/* Kiki’s Reset Room — Live-ready editorial hub + conversion landing page
   Cloudflare Pages ready. No JavaScript required for the core experience.
*/

:root {
  /* Kiki's Reset Room — authoritative brand system */
  --ivory: #FBF4EF;
  --cream: #FFFDF9;
  --soft-pink: #F5DFDD;
  --blush: #E4B9B5;
  --rose: #C97278;
  --deep-rose: #9D4C51;
  --wine: #7C3E43;
  --clay: #9D6F63;
  --gold: #C99A62;
  --cocoa: #3E241B;
  --text: #5F4A42;
  --muted: #7C665E;
  --white: #FFFFFF;
  --surface-glow: #FFFAF6;
  --surface-warm: #FFF7F4;
  --surface-rose: #FFECE8;
  --surface-blush: #F8E1DE;
  --surface-clay: #EAD7CD;
  --brown-soft: #6A4033;
  --brown-muted: #8A5C4F;
  --clay-dark: #B98D7E;
  --success: #47634E;
  --error: #9A4148;
  --line: rgba(157, 76, 81, 0.20);
  --shadow: 0 18px 44px rgba(62, 36, 27, 0.10);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
  --krr-section-pad: clamp(56px, 6vw, 92px);
  --krr-section-pad-compact: clamp(44px, 5vw, 76px);
  --krr-page-pad: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Keeps in-page destinations clear of the sticky desktop navigation. */
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* A two-tone ring stays visible on both the light editorial surfaces and
   dark image treatments used throughout the site. */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--white) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px var(--wine) !important;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--cocoa);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

/* Visible location trail for every interior page. */
.breadcrumbs {
  overflow-x: auto;
  padding: 0 clamp(20px, 4vw, 54px);
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.breadcrumbs ol {
  display: flex;
  width: min(100%, 1180px);
  align-items: center;
  gap: 9px;
  min-width: max-content;
  margin: 0 auto;
  padding: 7px 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
}
.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}
.breadcrumbs li + li::before {
  content: "/";
  color: var(--rose);
  font-weight: 700;
}
.breadcrumbs a,
.breadcrumbs [aria-current="page"] {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.breadcrumbs a {
  color: var(--deep-rose);
  text-underline-offset: 3px;
}
.breadcrumbs [aria-current="page"] {
  max-width: min(58vw, 36rem);
  overflow: hidden;
  color: var(--cocoa);
  text-overflow: ellipsis;
}
.brand-mark {
  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;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 1.9vw, 24px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--cocoa);
  border-bottom: 2px solid transparent;
  padding: 0 2px 3px;
}
.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"],
.site-nav a[aria-current="location"] {
  color: var(--deep-rose);
  border-bottom-color: rgba(201, 114, 120, 0.45);
}
.header-cta,
.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--deep-rose);
  color: white;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.header-cta {
  white-space: nowrap;
}
.header-cta:hover,
.header-cta:focus,
.button:hover,
.button:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
  background: var(--cocoa);
  color: white;
}
.button.secondary {
  background: transparent;
  color: var(--cocoa);
  border: 1px solid var(--line);
}
.button.secondary:hover,
.button.secondary:focus {
  background: var(--cocoa);
  color: white;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

main {
  overflow: visible;
  overflow-x: clip;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-rose);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 12px;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cocoa);
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 640px;
}
h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}
h4 {
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(100%, 560px);
  border: 1px solid var(--blush);
  background: white;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(62, 36, 27, 0.07);
}
.signup-form:focus-within {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--wine);
}
.signup-form input {
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  color: var(--cocoa);
  font-size: 16px;
}
.signup-form button {
  border-radius: 0;
  min-height: 54px;
  white-space: nowrap;
}
.privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: clamp(50px, 7vw, 76px) clamp(22px, 7vw, 96px);
}
.section-heading {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 760px;
}
.section-heading h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
}
.section-heading p { color: var(--text); font-size: 18px; }
.compact-heading { margin-bottom: 24px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.story-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(62, 36, 27, 0.06);
}

.story-card:focus-within {
  outline: 3px solid var(--deep-rose);
  outline-offset: 3px;
}
.story-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: var(--story-card-focal-x, 50%) var(--story-card-focal-y, 40%);
  display: block;
  background: linear-gradient(145deg, var(--surface-clay), var(--surface-glow));
}
.story-card-content { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 22px; }
.story-card h3 { margin-bottom: 12px; font-size: clamp(27px, 2.5vw, 34px); line-height: 1.12; }
.story-card p { margin: 0 0 16px; color: var(--text); font-size: 17px; line-height: 1.65; }
.story-card-content > .text-link { margin-top: auto; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  color: var(--deep-rose);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover,
.text-link:focus { color: var(--cocoa); text-decoration: underline; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }

.note-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  background: linear-gradient(90deg, var(--surface-glow) 0%, var(--surface-glow) 52%, var(--surface-rose) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.note-image {
  min-height: 520px;
  background: var(--surface-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.note-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.note-copy { padding: clamp(40px, 6vw, 76px); }
.note-copy h2 { font-size: clamp(38px, 5vw, 56px); line-height: 1.05; margin-bottom: 16px; }
.note-copy p { color: var(--text); max-width: 620px; }

.bottom-cta {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(90deg, var(--surface-blush), var(--surface-warm));
  padding: clamp(34px, 5vw, 52px) clamp(24px, 7vw, 96px);
}
.bottom-cta h2 { font-size: clamp(30px, 4vw, 42px); }
.bottom-cta .script {
  display: block;
  color: var(--cocoa);
  font-style: italic;
  font-size: clamp(32px, 5vw, 48px);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(130px, 0.75fr));
  gap: 32px;
  align-items: start;
  padding: 46px clamp(24px, 7vw, 96px) 28px;
  background: var(--surface-warm);
  color: var(--text);
  border-top: 1px solid var(--line);
}
.footer-about h2 {
  font-size: 26px;
  line-height: 1;
  color: var(--rose);
  margin-bottom: 12px;
}
.footer-about p {
  margin: 0;
  max-width: 340px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
.footer h3 {
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--cocoa);
  margin: 0 0 12px;
}
.footer a {
  display: block;
  text-decoration: none;
  color: var(--text);
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.35;
  word-break: break-word;
}
.footer a:hover,
.footer a:focus { color: var(--deep-rose); }
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  margin: 10px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(201,114,120,0.16);
  max-width: none;
}

/* Interior pages */
.interior-hero {
  padding: clamp(56px, 8vw, 92px) clamp(24px, 7vw, 96px);
  background: linear-gradient(90deg, rgba(255,253,249,0.94), rgba(255,239,237,0.86)), url("assets/soft-background.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.interior-hero .inner { max-width: 880px; }
.interior-hero h1 { max-width: 880px; }
.interior-hero p { max-width: 760px; font-size: 19px; line-height: 1.65; color: var(--text); }
.content-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 24px;
}
.wide-wrap { max-width: 1120px; }
.content-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 14px 34px rgba(62, 36, 27, 0.06);
  margin-bottom: 24px;
}
.content-card h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 14px; line-height: 1.08; }
.content-card h3 { font-size: 25px; line-height: 1.1; margin-bottom: 10px; }
.content-card p,
.content-card li { color: var(--text); font-size: 17px; line-height: 1.68; }
.content-card p:last-child { margin-bottom: 0; }

/* Editorial paragraph contract: keep high-value page copy comfortable to read
   and make contextual links visible without enlarging labels, prices, legal
   notes, form help, or other utility text. */
main p {
  text-wrap: pretty;
}

.section-heading > p:not(.eyebrow):not(.mini-eyebrow),
.note-copy > p:not(.eyebrow):not(.mini-eyebrow):not(.privacy),
.interior-hero .inner > p:not(.eyebrow):not(.mini-eyebrow) {
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.72;
}

.content-card > p:not(.eyebrow):not(.mini-eyebrow):not(.privacy),
.topic-prose-card > p:not(.eyebrow):not(.mini-eyebrow):not(.privacy),
.content-card > :is(ul, ol) > li,
.topic-prose-card > :is(ul, ol) > li {
  font-size: clamp(18px, 1.1vw, 19px);
  line-height: 1.72;
}

main :is(.section-heading, .note-copy, .interior-hero, .content-card, .topic-prose-card)
  p a:not(.button):not(.text-link) {
  color: var(--deep-rose);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

main :is(.section-heading, .note-copy, .interior-hero, .content-card, .topic-prose-card)
  p a:not(.button):not(.text-link):hover,
main :is(.section-heading, .note-copy, .interior-hero, .content-card, .topic-prose-card)
  p a:not(.button):not(.text-link):focus-visible {
  color: var(--cocoa);
  text-decoration-thickness: 2px;
}
.mini-eyebrow {
  color: var(--deep-rose) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px !important;
  font-weight: 800;
  margin: 0 0 8px !important;
}
.soft-cta-card {
  background: linear-gradient(90deg, var(--surface-warm), var(--surface-rose));
}

@media (max-width: 980px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .story-grid { grid-template-columns: 1fr; }
  .note-section, .bottom-cta { grid-template-columns: 1fr; }
  .note-image, .note-image img { min-height: 460px; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(44px, 13vw, 62px); line-height: 1.04; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form button { width: 100%; }
  .footer { grid-template-columns: 1fr; }
}

/* Story refresh */
.story-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.story-grid-expanded .story-card-content {
  min-height: 0;
}
.story-grid-expanded .story-card h3 {
  font-size: clamp(27px, 2.4vw, 34px);
}
@media (max-width: 980px) {
  .story-grid-expanded { grid-template-columns: 1fr; }
}

/* Searchable story archive */
.archive-card {
  scroll-margin-top: 110px;
}
.archive-tools {
  background: var(--surface-warm);
  border: 1px solid rgba(201,114,120,0.18);
  border-radius: 16px;
  padding: 20px;
  margin: 0 0 18px;
}
.search-label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--cocoa);
  margin-bottom: 10px;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-button {
  appearance: none;
  min-height: 44px;
  border: 1px solid rgba(201,114,120,0.30);
  background: var(--cream);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 14px;
  font: 800 13px/1 var(--sans);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-button:hover,
.filter-button:focus {
  border-color: var(--rose);
  color: var(--cocoa);
}
.filter-button.is-active {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  color: white;
}
.archive-grid { margin-top: 0; }
.archive-item[hidden] { display: none !important; }
.no-results {
  background: var(--surface-warm);
  border: 1px solid rgba(201,114,120,0.20);
  border-radius: 14px;
  padding: 18px;
  margin: 18px 0 0 !important;
  text-align: center;
}
/* SEO topic hubs */
.topic-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.topic-card {
  background: var(--surface-warm);
  border: 1px solid rgba(201,114,120,0.20);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(62, 36, 27, 0.045);
}
.topic-card h3 {
  font-size: clamp(24px, 2.7vw, 31px);
  line-height: 1.05;
  margin-bottom: 10px;
}
.topic-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}
.topic-card p:last-of-type { margin-bottom: 18px; }
.small-topic-card { display: flex; flex-direction: column; }
.small-topic-card .text-link { margin-top: auto; }
.topic-wrap .content-card { scroll-margin-top: 110px; }
.topic-prose-card h2 { max-width: 780px; }
.topic-prose-card p { max-width: 860px; }
.footer .footer-links:nth-of-type(3) a { margin-bottom: 8px; }
@media (max-width: 980px) {
  .topic-card-grid { grid-template-columns: 1fr; }
}

/* Compact, no-script mobile navigation shared by every page. The native
   details element exposes its expanded state to assistive technology and
   remains operable when JavaScript is unavailable. */
.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 10px clamp(18px, 4vw, 32px);
    background: rgba(255, 253, 249, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

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

  .site-header .brand-mark {
    min-width: 0;
    padding-right: 0;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: inline-flex;
    min-width: 88px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream);
    color: var(--cocoa);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary:hover,
  .mobile-menu summary:focus-visible {
    border-color: var(--deep-rose);
    color: var(--deep-rose);
    outline: 3px solid rgba(157, 76, 81, 0.2);
    outline-offset: 2px;
  }

  .mobile-menu__icon {
    position: relative;
    width: 16px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .mobile-menu__icon::after {
    position: absolute;
    top: 4px;
    right: 0;
    left: 0;
    border-top: 2px solid currentColor;
    content: "";
  }

  .mobile-menu[open] .mobile-menu__icon {
    height: 16px;
    border: 0;
  }

  .mobile-menu[open] .mobile-menu__icon::before,
  .mobile-menu[open] .mobile-menu__icon::after {
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    border-top: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .mobile-menu[open] .mobile-menu__icon::after {
    transform: rotate(-45deg);
  }

  .mobile-menu__panel {
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
    padding: 12px clamp(18px, 4vw, 32px) 18px;
    background: rgba(255, 253, 249, 0.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(62, 36, 27, 0.12);
  }

  .mobile-menu__panel > a {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(157, 76, 81, 0.14);
    color: var(--cocoa);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
  }

  .mobile-menu__panel > a:hover,
  .mobile-menu__panel > a:focus-visible,
  .mobile-menu__panel > a[aria-current="page"],
  .mobile-menu__panel > a[aria-current="location"] {
    color: var(--deep-rose);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .mobile-menu__panel > .mobile-menu__cta {
    min-height: 48px;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 18px;
    background: var(--deep-rose);
    border: 0;
    border-radius: 8px;
    color: var(--white);
  }

  .mobile-menu__panel > .mobile-menu__cta:hover,
  .mobile-menu__panel > .mobile-menu__cta:focus-visible {
    background: var(--cocoa);
    color: var(--white);
  }

  .breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .breadcrumbs ol {
    width: 100%;
    min-width: 0;
  }

  .breadcrumbs li:last-child {
    min-width: 0;
    flex: 1;
  }

  .breadcrumbs li {
    min-height: 44px;
  }

  .breadcrumbs li + li::before {
    line-height: 1;
  }

  .breadcrumbs [aria-current="page"] {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    max-width: 100%;
    align-items: center;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .mobile-menu__panel {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Topics page — visual reset-room directory
   Scoped to .topics-page so the rest of the site stays unchanged.
   ================================================================ */
.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topics-page {
  background: var(--ivory);
}

.topics-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(690px, 72vw, 830px);
  padding: var(--krr-section-pad) var(--krr-page-pad);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.98) 0 18%, rgba(255,250,246,0.94) 32%, rgba(250,232,226,0.62) 62%, rgba(245,223,221,0.82) 100%),
    linear-gradient(135deg, var(--surface-glow), var(--surface-blush));
}

.topics-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(157,111,99,0.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(201,114,120,0.08) 0 1px, transparent 1.5px);
  background-size: 17px 17px, 23px 23px;
  pointer-events: none;
}

.topics-showcase::after {
  content: "";
  position: absolute;
  inset: auto -8% -26% 42%;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,185,181,0.32), rgba(228,185,181,0) 69%);
  pointer-events: none;
}

.topics-collage {
  position: absolute;
  inset: 0;
  width: min(100%, 1600px);
  margin: 0 auto;
  pointer-events: none;
}

.topics-photo {
  position: absolute;
  margin: 0;
  overflow: visible;
  border: clamp(6px, 0.7vw, 10px) solid rgba(255,253,249,0.96);
  border-radius: 5px;
  background: var(--surface-blush);
  box-shadow: 0 26px 52px rgba(62,36,27,0.17);
}

.topics-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 36%;
  height: 24px;
  top: -17px;
  left: 32%;
  transform: rotate(-2deg);
  background: rgba(236,213,201,0.72);
  box-shadow: 0 1px 1px rgba(62,36,27,0.08);
  backdrop-filter: blur(2px);
}

.topics-photo picture,
.topics-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.topics-photo img {
  object-fit: cover;
  filter: sepia(0.06) saturate(0.88) contrast(0.96) brightness(1.02);
}

.topics-photo--one {
  top: 8%;
  left: -1.5%;
  width: clamp(245px, 25vw, 395px);
  aspect-ratio: 4 / 3;
  transform: rotate(-4.5deg);
}

.topics-photo--two {
  bottom: 7%;
  left: 2.5%;
  width: clamp(220px, 20vw, 330px);
  aspect-ratio: 4 / 3;
  transform: rotate(3.5deg);
}

.topics-photo--three {
  top: 6.5%;
  right: 1.5%;
  width: clamp(250px, 24vw, 385px);
  aspect-ratio: 4 / 3;
  transform: rotate(3.8deg);
}

.topics-photo--four {
  right: -1.4%;
  bottom: 5%;
  width: clamp(225px, 21vw, 340px);
  aspect-ratio: 4 / 3;
  transform: rotate(-4deg);
}

.topics-showcase__content {
  position: relative;
  z-index: 3;
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.topics-showcase__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--deep-rose);
  font: 800 12px/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topics-showcase__eyebrow::before,
.topics-showcase__eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(179,95,102,0.55);
}

.topics-showcase h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--brown-soft);
  font-size: clamp(52px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.topics-showcase__lede {
  max-width: 590px;
  margin: 25px auto 0;
  color: var(--text);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.topics-welcome-note {
  position: relative;
  width: min(100%, 390px);
  margin: 34px auto 0;
  padding: 22px 24px 18px;
  border: 1px solid rgba(157,111,99,0.28);
  border-radius: 18px;
  background: rgba(255,253,249,0.80);
  box-shadow: 0 18px 36px rgba(62,36,27,0.08);
  backdrop-filter: blur(9px);
}

.topics-welcome-note__heart {
  position: absolute;
  top: -19px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transform: translateX(-50%);
  border: 1px solid rgba(157,111,99,0.30);
  border-radius: 50%;
  background: var(--cream);
  color: var(--rose);
  font: 400 24px/1 var(--serif);
}

.topics-welcome-note p {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}

.topics-welcome-note p span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
}

.topics-welcome-note__signature {
  display: block;
  margin-top: 10px;
  color: var(--deep-rose);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.reset-rooms {
  /* A generous editorial pause before the directory, plus a safe anchor offset. */
  scroll-margin-top: 112px;
  padding: var(--krr-section-pad) var(--krr-page-pad);
  background: var(--cream);
}

.reset-rooms__header {
  max-width: 820px;
  margin: 0 auto clamp(76px, 6vw, 98px);
  padding-inline: clamp(0px, 2vw, 24px);
  text-align: center;
}

.reset-rooms__header .eyebrow {
  display: block;
  margin: 0 0 24px;
}

.reset-rooms__header h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.09;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.reset-rooms__header > p:last-child {
  max-width: 720px;
  margin: clamp(24px, 2.2vw, 30px) auto 0;
  padding: 0;
  color: var(--text);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.7;
  text-wrap: pretty;
}

.reset-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 2.4vw, 36px);
  row-gap: clamp(34px, 3.2vw, 48px);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.reset-room-card-wrap {
  width: 100%;
  min-width: 0;
}

.reset-room-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(157,111,99,0.16);
  border-radius: 24px;
  background: var(--cream);
  color: var(--cocoa);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(62,36,27,0.13);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reset-room-card picture,
.reset-room-card img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.reset-room-card img {
  display: block;
  object-fit: cover;
  object-position: var(--room-focal-x, 50%) var(--room-focal-y, 45%);
  transition: transform 0.45s ease;
}

.reset-room-card[href="/soft-self-care/"] { --room-focal-y: 42%; }
.reset-room-card[href="/emotional-reset-rituals/"] { --room-focal-y: 48%; }
.reset-room-card[href="/after-work-reset/"] { --room-focal-y: 44%; }
.reset-room-card[href="/soft-boundaries/"] { --room-focal-y: 46%; }
.reset-room-card[href="/sunday-reset/"] { --room-focal-y: 44%; }
.reset-room-card[href="/journal-prompts/"] { --room-focal-y: 46%; }

.reset-room-card__wash {
  display: none;
}

.reset-room-card__content {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 2.5vw, 34px);
  color: var(--cocoa);
}

.reset-room-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(157,76,81,0.24);
  border-radius: 50%;
  background: var(--surface-rose);
  color: var(--deep-rose);
  box-shadow: 0 8px 18px rgba(33,16,11,0.16);
  backdrop-filter: blur(6px);
}

.reset-room-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-room-card__kicker {
  margin-bottom: 7px;
  color: var(--deep-rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reset-room-card__title {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(27px, 2.45vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.reset-room-card__copy {
  max-width: 32ch;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.52;
}

.reset-room-card__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 15px;
  border-radius: 7px;
  border: 1px solid rgba(157,76,81,0.32);
  background: var(--surface-glow);
  color: var(--deep-rose);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(28,14,10,0.16);
}

.reset-room-card:hover,
.reset-room-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(62,36,27,0.19);
}

.reset-room-card:hover img,
.reset-room-card:focus-visible img {
  transform: scale(1.045);
}

.reset-room-card:focus-visible {
  outline: 4px solid rgba(201,114,120,0.35);
  outline-offset: 4px;
}

.topics-bottom-cta {
  border-top: 1px solid rgba(201,114,120,0.16);
}

.topics-bottom-cta .eyebrow {
  margin-bottom: 8px;
}

@media (max-width: 1180px) {
  .topics-showcase {
    min-height: auto;
    display: block;
    padding: 68px 24px 46px;
  }

  .topics-showcase__content {
    width: min(100%, 760px);
  }

  .topics-collage {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 940px);
    margin-top: 46px;
  }

  .topics-photo,
  .topics-photo--one,
  .topics-photo--two,
  .topics-photo--three,
  .topics-photo--four {
    position: relative;
    inset: auto;
    width: auto;
    aspect-ratio: 4 / 3;
    transform: none;
    border-width: 5px;
  }

  .topics-photo:nth-child(even) {
    transform: translateY(14px);
  }

  .topics-photo::before {
    display: none;
  }

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

  .reset-room-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 24px;
  }

  .reset-rooms {
    scroll-margin-top: 24px;
    padding-top: var(--krr-section-pad);
  }
}

@media (max-width: 800px) {
  .topics-showcase h1 {
    font-size: clamp(48px, 11vw, 70px);
  }

  .topics-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }

  .topics-photo:nth-child(even) {
    transform: none;
  }

}

@media (max-width: 680px) {
  .topics-showcase {
    display: flex;
    flex-direction: column;
    padding: 36px 20px 40px;
  }

  .topics-showcase__content {
    order: 1;
    width: 100%;
  }

  .topics-showcase__eyebrow {
    margin-bottom: 14px;
  }

  .topics-showcase__eyebrow::before,
  .topics-showcase__eyebrow::after {
    width: 30px;
  }

  .topics-showcase h1 {
    font-size: clamp(44px, 12vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .topics-showcase__lede {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.6;
  }

  .topics-welcome-note {
    display: none;
  }

  .topics-collage {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: 480px;
    margin: 30px auto 0;
  }

  .topics-photo,
  .topics-photo--one,
  .topics-photo--two,
  .topics-photo--three,
  .topics-photo--four {
    aspect-ratio: 4 / 3;
    border-width: 3px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(62, 36, 27, 0.12);
  }

  .reset-rooms {
    scroll-margin-top: 18px;
    padding: 96px 18px 98px;
  }

  .reset-rooms__header {
    margin-bottom: 54px;
    padding-inline: 4px;
  }

  .reset-rooms__header .eyebrow {
    margin-bottom: 18px;
  }

  .reset-rooms__header > p:last-child {
    margin-top: 22px;
    padding: 0;
    font-size: 17px;
    line-height: 1.68;
  }

  .reset-room-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
  }

  .reset-room-card {
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 20px;
  }

  .reset-room-card__content {
    padding: 25px;
  }

  .reset-room-card__title {
    font-size: 32px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reset-room-card,
  .reset-room-card img {
    transition: none;
  }

  .reset-room-card:hover,
  .reset-room-card:focus-visible,
  .reset-room-card:hover img,
  .reset-room-card:focus-visible img {
    transform: none;
  }
}

/* Contact page redesign — July 11, 2026 */
.contact-page {
  background: var(--ivory);
}

.contact-editorial-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  min-height: 720px;
  padding: var(--krr-section-pad-compact) var(--krr-page-pad) var(--krr-section-pad);
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 114, 120, 0.18);
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 223, 221, 0.82), transparent 29%),
    radial-gradient(circle at 90% 20%, rgba(228, 185, 181, 0.34), transparent 28%),
    linear-gradient(118deg, var(--surface-glow) 0%, var(--surface-warm) 52%, var(--surface-blush) 100%);
}

.contact-editorial-hero::before,
.contact-editorial-hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-editorial-hero::before {
  width: 480px;
  height: 480px;
  right: -220px;
  top: -240px;
  border: 1px solid rgba(157, 111, 99, 0.13);
  box-shadow: inset 0 0 0 68px rgba(255, 255, 255, 0.12);
}

.contact-editorial-hero::after {
  width: 230px;
  height: 230px;
  left: -120px;
  bottom: -96px;
  background: rgba(245, 223, 221, 0.54);
}

.contact-hero-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(157, 111, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 111, 99, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, black, transparent 72%);
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.contact-script {
  margin: 0 0 8px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 35px);
  font-style: italic;
  line-height: 1.1;
}

.contact-hero-copy .eyebrow {
  margin-bottom: 16px;
}

.contact-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.contact-hero-copy h1 span {
  display: block;
  color: var(--rose);
  font-style: italic;
}

.contact-hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.4;
}

.contact-hero-support {
  max-width: 590px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.contact-hero-actions {
  margin-top: 28px;
}

.contact-hero-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-hero-options li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(201, 114, 120, 0.18);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.69);
  box-shadow: 0 10px 24px rgba(62, 36, 27, 0.04);
  backdrop-filter: blur(8px);
}

.contact-option-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 114, 120, 0.24);
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--rose);
}

.contact-option-icon svg,
.contact-direct-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-options strong,
.contact-hero-options small {
  display: block;
}

.contact-hero-options strong {
  font-size: 13px;
  line-height: 1.2;
}

.contact-hero-options small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.contact-hero-visual {
  position: relative;
  width: min(100%, 720px);
  min-height: 0;
  aspect-ratio: 3 / 2;
  margin-left: auto;
}

.contact-hero-visual picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 249, 0.86);
  border-radius: 270px 270px 42px 42px;
  background: var(--surface-clay);
  box-shadow: 0 30px 72px rgba(62, 36, 27, 0.18);
}

.contact-hero-visual picture::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(54, 27, 18, 0.12));
  content: "";
  pointer-events: none;
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  display: block;
}

.contact-hero-seal {
  position: absolute;
  z-index: 3;
  top: 50px;
  left: -10px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(157, 111, 99, 0.25);
  border-radius: 50%;
  background: rgba(255, 249, 245, 0.88);
  color: var(--clay);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.02;
  text-align: center;
  box-shadow: 0 16px 34px rgba(62, 36, 27, 0.09);
  backdrop-filter: blur(8px);
}

.contact-hero-seal span {
  display: block;
}

.contact-hero-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 42px;
  width: min(310px, 48%);
  padding: 24px;
  border: 1px solid rgba(201, 114, 120, 0.24);
  border-radius: 20px;
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 24px 54px rgba(62, 36, 27, 0.14);
  backdrop-filter: blur(10px);
}

.contact-hero-note p:last-child {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.28;
}

.contact-conversation-section {
  scroll-margin-top: 104px;
  padding: var(--krr-section-pad) var(--krr-page-pad);
  background: var(--cream);
}

.contact-conversation-inner {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.contact-note-panel,
.contact-form-shell {
  border: 1px solid rgba(201, 114, 120, 0.18);
  border-radius: 24px;
  background: var(--surface-glow);
  box-shadow: 0 18px 44px rgba(62, 36, 27, 0.07);
}

.contact-note-panel {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: clamp(34px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(245, 223, 221, 0.72), transparent 34%),
    linear-gradient(155deg, var(--surface-glow) 0%, var(--surface-warm) 100%);
}

.contact-note-panel h2,
.contact-form-heading h2,
.contact-section-heading h2,
.contact-fit-copy h2,
.contact-final-cta h2 {
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.contact-note-panel > p:not(.contact-script) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.contact-direct-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(201, 114, 120, 0.2);
  border-radius: 16px;
  background: var(--surface-warm);
}

.contact-direct-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-rose);
  color: white;
}

.contact-direct-card .mini-eyebrow {
  margin-bottom: 2px !important;
}

.contact-direct-card a {
  color: var(--cocoa);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.contact-direct-card a:hover,
.contact-direct-card a:focus-visible {
  color: var(--deep-rose);
  text-decoration: underline;
}

.contact-copy-button {
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(201, 114, 120, 0.28);
  border-radius: 8px;
  background: white;
  color: var(--cocoa);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.contact-copy-button:hover,
.contact-copy-button:focus-visible {
  border-color: var(--rose);
  color: var(--deep-rose);
}

.contact-social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 114, 120, 0.16);
}

.contact-social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(201, 114, 120, 0.19);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  border-color: rgba(179, 95, 102, 0.46);
  background: white;
  color: var(--deep-rose);
  text-decoration: underline;
}

.contact-form-shell {
  padding: clamp(28px, 4.5vw, 52px);
}

.contact-form-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.contact-form-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label,
.contact-label-row label {
  color: var(--cocoa);
  font-size: 14px;
  font-weight: 800;
}

.contact-field label > span[aria-hidden="true"],
.contact-label-row label > span[aria-hidden="true"] {
  color: var(--rose);
}

.contact-optional {
  margin-left: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(157, 111, 99, 0.26);
  border-radius: 10px;
  background: white;
  color: var(--cocoa);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: inset 0 1px 2px rgba(62, 36, 27, 0.025);
}

.contact-field input,
.contact-field select {
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 190px;
  padding: 14px;
  resize: vertical;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(179, 95, 102, 0.48);
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible,
.contact-copy-button:focus-visible,
.contact-submit:focus-visible {
  outline: 3px solid rgba(201, 114, 120, 0.25);
  outline-offset: 2px;
  border-color: var(--deep-rose);
}

.contact-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.contact-character-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.contact-field-help {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contact-submit {
  gap: 9px;
  margin-top: 24px;
}

.contact-form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-status[data-state="success"] {
  color: var(--success);
}

.contact-form-status[data-state="error"] {
  color: var(--error);
}

.contact-guide-section {
  padding: var(--krr-section-pad) var(--krr-page-pad);
  border-top: 1px solid rgba(201, 114, 120, 0.15);
  border-bottom: 1px solid rgba(201, 114, 120, 0.15);
  background:
    linear-gradient(130deg, rgba(255, 253, 249, 0.96), rgba(250, 231, 226, 0.94)),
    url("assets/soft-background.jpg") center / cover no-repeat;
}

.contact-section-heading {
  max-width: 820px;
  margin: 0 auto clamp(42px, 5vw, 64px);
  text-align: center;
}

.contact-section-heading > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.contact-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-guide-card {
  position: relative;
  min-height: 290px;
  padding: clamp(28px, 3.4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(201, 114, 120, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 16px 34px rgba(62, 36, 27, 0.06);
}

.contact-guide-card h3 {
  max-width: 260px;
  font-size: 30px;
  line-height: 1.08;
}

.contact-guide-card p:last-child {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.contact-fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: var(--krr-section-pad) 0;
}

.contact-fit-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.contact-fit-copy ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-fit-copy li {
  position: relative;
  padding-left: 25px;
  color: var(--text);
  font-size: 15px;
}

.contact-fit-copy li::before {
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--rose);
  content: "✓";
  font-weight: 800;
}

.contact-fit-quote {
  margin: 0;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(201, 114, 120, 0.2);
  border-radius: 34px 34px 12px 34px;
  background: linear-gradient(145deg, var(--surface-blush), var(--surface-warm));
  box-shadow: 0 20px 48px rgba(62, 36, 27, 0.09);
}

.contact-fit-quote p {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  font-style: italic;
  line-height: 1.18;
}

.contact-fit-quote cite {
  display: block;
  margin-top: 20px;
  color: var(--deep-rose);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: var(--krr-section-pad-compact) var(--krr-page-pad);
  border-top: 1px solid rgba(201, 114, 120, 0.16);
  background: linear-gradient(105deg, var(--surface-blush), var(--surface-rose) 55%, var(--surface-warm));
}

.contact-final-cta > div:first-child {
  max-width: 820px;
}

.contact-final-cta h2 {
  font-size: clamp(36px, 4.5vw, 56px);
}

.contact-final-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 17px;
}

.contact-final-cta .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .contact-editorial-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
    padding-top: 68px;
  }

  .contact-hero-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-hero-lede,
  .contact-hero-support,
  .contact-hero-options {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions { justify-content: center; }

  .contact-hero-visual {
    width: min(100%, 760px);
    min-height: 0;
    margin: 18px auto 0;
  }

  .contact-hero-visual picture { inset: 0; }

  .contact-hero-options {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contact-hero-options li {
    min-height: 68px;
  }

  .contact-conversation-inner {
    grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
    gap: 34px;
  }

  .contact-social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .contact-editorial-hero {
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .contact-hero-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-hero-lede,
  .contact-hero-support,
  .contact-hero-options {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-hero-visual {
    width: min(100%, 760px);
    min-height: 0;
    margin: 18px auto 0;
  }

  .contact-hero-visual picture {
    inset: 0;
  }

  .contact-hero-seal {
    left: 20px;
  }

  .contact-hero-note {
    right: 20px;
  }

  .contact-conversation-inner {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .contact-fit-section,
  .contact-final-cta {
    grid-template-columns: 1fr;
  }

  .contact-note-panel {
    position: static;
  }

  .contact-social-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-guide-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .contact-guide-card {
    min-height: auto;
  }

  .contact-fit-section {
    width: min(calc(100% - 40px), 820px);
    text-align: center;
  }

  .contact-fit-copy ul {
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .contact-final-cta {
    text-align: center;
  }

  .contact-final-cta > div:first-child {
    margin: 0 auto;
  }

  .contact-final-cta .button-row {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .contact-editorial-hero {
    padding: 52px 18px 72px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .contact-hero-lede {
    font-size: 21px;
  }

  .contact-hero-actions,
  .contact-hero-actions .button {
    width: 100%;
  }

  .contact-hero-options {
    width: 100%;
  }

  .contact-hero-visual {
    display: grid;
    gap: 16px;
    min-height: auto;
    aspect-ratio: auto;
    margin-top: 8px;
  }

  .contact-hero-visual picture {
    position: relative;
    inset: auto;
    width: calc(100% - 22px);
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    border-width: 7px;
    border-radius: 30px;
  }

  .contact-hero-seal {
    top: 28px;
    left: 0;
    width: 96px;
    height: 96px;
    font-size: 15px;
  }

  .contact-hero-note {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 22px;
  }

  .contact-conversation-section,
  .contact-guide-section {
    padding: 72px 18px;
  }

  .contact-note-panel,
  .contact-form-shell {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-direct-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .contact-copy-button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field--full {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-section-heading h2,
  .contact-note-panel h2,
  .contact-form-heading h2,
  .contact-fit-copy h2,
  .contact-final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .contact-guide-card {
    padding: 28px 22px;
  }

  .contact-fit-section {
    width: calc(100% - 36px);
    padding: 74px 0;
  }

  .contact-fit-quote {
    padding: 30px 24px;
  }

  .contact-final-cta {
    padding: 58px 18px;
  }

  .contact-final-cta .button-row,
  .contact-final-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-copy-button,
  .contact-submit {
    transition: none;
  }
}

/* Contact left-column details and Pinterest update — July 12, 2026 */

.contact-note-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-note-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: 2px;
  border: 1px solid rgba(201, 114, 120, 0.22);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.84);
  color: var(--rose);
  box-shadow: 0 10px 26px rgba(62, 36, 27, 0.06);
}

.contact-note-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-note-heading .contact-script {
  margin-bottom: 9px;
  font-size: clamp(23px, 2.2vw, 31px);
}

.contact-note-heading h2 {
  font-size: clamp(39px, 4.15vw, 54px);
}

.contact-note-intro {
  margin: 24px 0 0 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.contact-note-panel .contact-direct-card {
  margin-top: 26px;
  background: rgba(255, 244, 241, 0.86);
}

.contact-next-steps {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(201, 114, 120, 0.17);
}

.contact-next-steps > .mini-eyebrow {
  margin: 0 0 16px !important;
}

.contact-next-steps > p:not(.mini-eyebrow) {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .contact-note-heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .contact-note-mark {
    width: 46px;
    height: 46px;
  }

  .contact-note-heading h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .contact-social-links {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Local story publishing system — KRR revenue-ready reading room
   ================================================================ */
.story-card-image-link {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.story-card-image-link img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.story-card-image-link:hover img,
.story-card-image-link:focus img {
  transform: none;
}
.story-card h3 a {
  color: inherit;
  text-decoration: none;
}
.story-card h3 a:hover,
.story-card h3 a:focus {
  color: var(--rose);
}
.topic-story-section {
  overflow: hidden;
}
.topic-story-grid {
  max-width: none;
  margin-top: 24px;
}
.topic-story-grid .story-card-content {
  min-height: 0;
}

.story-page {
  overflow: visible;
  background: var(--ivory);
}
.story-hero {
  padding: var(--krr-section-pad-compact) var(--krr-page-pad);
  background:
    radial-gradient(circle at 88% 10%, rgba(228,185,181,0.30), transparent 32%),
    linear-gradient(180deg, var(--surface-glow) 0%, var(--surface-rose) 100%);
  border-bottom: 1px solid var(--line);
}
.story-hero__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}
.story-hero .eyebrow a {
  color: inherit;
  text-decoration: none;
}
.story-hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.story-subtitle {
  max-width: 820px;
  margin: 24px 0 20px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 35px);
  font-style: italic;
  line-height: 1.4;
}
.story-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.story-featured-image {
  width: min(calc(100% - 48px), 1120px);
  margin: clamp(32px, 5vw, 62px) auto 0;
}
.story-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.story-featured-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.story-layout {
  width: min(calc(100% - 48px), 780px);
  margin: clamp(44px, 7vw, 78px) auto;
}
.story-body {
  min-width: 0;
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: clamp(20px, 1.35vw, 23px);
  line-height: 1.76;
  overflow-wrap: break-word;
}
.story-body > p:first-child::first-letter {
  font-family: var(--serif);
  float: left;
  margin: 0.08em 0.10em 0 0;
  color: var(--rose);
  font-size: 3.5em;
  line-height: 0.78;
}
.story-body p {
  margin: 0 0 1.45em;
  text-wrap: pretty;
}
.story-body h2 {
  margin: 1.9em 0 0.7em;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  scroll-margin-top: 120px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.story-body h3 {
  margin: 1.7em 0 0.62em;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  scroll-margin-top: 120px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.story-body h4 {
  margin: 1.55em 0 0.58em;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  scroll-margin-top: 120px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.story-body blockquote {
  margin: 2em 0;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(90deg, var(--surface-warm), var(--surface-rose));
  border-left: 5px solid var(--rose);
  border-radius: 0 16px 16px 0;
}
.story-body blockquote p {
  margin: 0;
  color: var(--cocoa);
  font-size: clamp(25px, 3vw, 33px);
  font-style: italic;
  line-height: 1.45;
}
.story-body ul,
.story-body ol {
  margin: 0 0 1.6em;
  padding-left: 1.3em;
}
.story-body li {
  margin-bottom: 0.55em;
}
.story-body a {
  color: var(--deep-rose);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.story-body hr {
  width: 90px;
  height: 1px;
  margin: 3em auto;
  border: 0;
  background: var(--blush);
}
.story-body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 2.2em auto;
  border-radius: 18px;
}
.story-body figure {
  margin: 2.2em 0;
}
.story-body figure img {
  margin: 0;
}
.story-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.story-inline-reset {
  margin: clamp(30px, 5vw, 46px) 0;
  padding: clamp(20px, 3.5vw, 28px);
  background: linear-gradient(105deg, var(--surface-glow), var(--surface-warm));
  border: 1px solid var(--line);
  border-left: 5px solid var(--rose);
  border-radius: 0 18px 18px 0;
}
.story-inline-reset p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}
.story-inline-reset a {
  font-weight: 800;
}
.story-signoff {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.story-signoff p {
  margin: 0;
}
.story-signature {
  color: var(--rose);
  font-size: 34px;
  font-style: italic;
}
.story-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(44px, 7vw, 76px) clamp(22px, 7vw, 96px);
  background: linear-gradient(90deg, var(--surface-blush), var(--surface-warm));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-newsletter h2 {
  max-width: 660px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.04;
}
.story-newsletter p:not(.eyebrow):not(.mini-eyebrow):not(.privacy):not(.story-topic-path) {
  max-width: 650px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.7;
}
.story-newsletter__actions {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.story-newsletter__form {
  min-width: 0;
}
.story-topic-path {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.story-topic-path a {
  color: var(--deep-rose);
  font-weight: 800;
  text-underline-offset: 3px;
}
.related-stories {
  background: var(--surface-glow);
}
.archive-grid .story-card {
  height: 100%;
}
.archive-grid .story-card-content {
  min-height: 0;
}
.archive-grid .story-card[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .story-layout {
    width: min(calc(100% - 40px), 760px);
  }
  .story-newsletter {
    grid-template-columns: 1fr;
  }
  .topic-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .story-hero {
    padding: 46px 18px 38px;
  }
  .story-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.04;
  }
  .story-subtitle {
    font-size: clamp(23px, 7vw, 29px);
  }
  .story-featured-image {
    width: min(calc(100% - 28px), 760px);
  }
  .story-layout {
    width: min(calc(100% - 36px), 760px);
  }
  .story-featured-image img {
    border-radius: 14px;
  }
  .story-body {
    font-size: 19px;
    line-height: 1.72;
  }
  .story-body h2 {
    font-size: clamp(34px, 10vw, 43px);
  }
  .story-body h3 {
    font-size: clamp(29px, 8.5vw, 36px);
  }
  .story-body h4 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .story-body > p:first-child::first-letter {
    font-size: 3.1em;
  }
  .story-newsletter {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Shared list and card patterns used by Reset Notes and Welcome. */
.check-list {
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 800;
}
.commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.commerce-grid article {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 34px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(62, 36, 27, 0.05);
}
.commerce-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.1;
}
.commerce-grid p {
  color: var(--text);
  line-height: 1.65;
}

.newsletter-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding: var(--krr-section-pad-compact) var(--krr-page-pad);
  background: linear-gradient(135deg, var(--surface-glow), var(--soft-pink));
}
.newsletter-landing-hero h1 { font-size: clamp(58px, 7vw, 88px); }
.newsletter-landing-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
}
.newsletter-landing-hero .newsletter-landing-bonus {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.72);
  border-left: 4px solid var(--rose);
  border-radius: 0 14px 14px 0;
  font-size: 16px;
}
.newsletter-landing-hero aside {
  padding: 32px;
  background: rgba(255,253,249,0.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.newsletter-landing-form { margin-top: 28px; }
.newsletter-delivery-note {
  margin: 18px 0 0;
  padding-top: 16px;
  color: var(--text);
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.7;
}
.newsletter-promise { background: var(--cream); }
.bottom-cta > div:first-child > p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.65;
}

.welcome-business-hero {
  background: linear-gradient(135deg, var(--surface-glow), var(--soft-pink));
}
.welcome-expect-card { margin-bottom: 52px; }

@media (max-width: 940px) {
  .newsletter-landing-hero {
    grid-template-columns: 1fr;
  }
  .commerce-grid { grid-template-columns: 1fr 1fr; }
  .commerce-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .breadcrumbs { padding: 0 18px; }
  .newsletter-landing-hero { padding-right: 18px; padding-left: 18px; }
  .commerce-grid { grid-template-columns: 1fr; }
  .commerce-grid article:last-child { grid-column: auto; }
  .footer { grid-template-columns: 1fr; }
}

/* Story affiliate recommendations */
.story-affiliate {
  margin: clamp(44px, 7vw, 72px) 0;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(145deg, var(--surface-glow), var(--cream));
  border: 1px solid var(--line);
  border-radius: 20px;
}
.story-affiliate-disclosure {
  margin-bottom: 32px;
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 253, 249, 0.9);
  border-left: 4px solid var(--rose);
  font-size: 14px;
  line-height: 1.65;
}
.story-affiliate-disclosure a { font-weight: 700; }
.story-affiliate__heading { max-width: 720px; }
.story-affiliate__heading h2 { margin-bottom: 12px; }
.story-affiliate__heading > p:last-child { color: var(--text); line-height: 1.7; }
.story-affiliate-grid { display: grid; gap: 20px; margin-top: 28px; }
.story-affiliate-card {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.story-affiliate-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
}
.story-affiliate-card__copy h3 { margin-bottom: 8px; }
.story-affiliate-card__copy p { margin-bottom: 18px; color: var(--text); line-height: 1.65; }
.story-affiliate-link { width: fit-content; }

@media (max-width: 680px) {
  .story-affiliate { padding: 22px 18px; }
  .story-affiliate-card { grid-template-columns: 1fr; }
  .story-affiliate-card > img { max-width: 220px; }
}
