:root {
  --routine-ink: #080808;
  --routine-muted: #57525b;
  --routine-paper: #fffdfb;
  --routine-white: #ffffff;
  --routine-lilac: #eee6ff;
  --routine-cyan: #b9ecf3;
  --routine-pink: #f9dce9;
  --routine-violet: #9168f3;
  --routine-line: rgba(8, 8, 8, .76);
  --routine-soft-line: rgba(8, 8, 8, .18);
  --routine-radius: 28px;
}

html { scroll-behavior: smooth; }
body.routine-page {
  min-width: 320px;
  background: var(--routine-paper);
  color: var(--routine-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}
body.routine-page a { color: inherit; }
body.routine-page button,
body.routine-page input { font: inherit; }
body.routine-page main > section { width: 100%; }
.routine-container { width: min(calc(100% - 48px), 1520px); margin: 0 auto; }
.routine-page .site-footer { width: 100%; }
.routine-page .site-footer__content,
.routine-page .site-footer__inner,
.routine-page .site-footer__main,
.routine-page .site-footer__brand-block,
.routine-page .site-footer__brand-mark,
.routine-page .site-footer__company,
.routine-page .site-footer__disclaimer,
.routine-page .site-footer__legal { min-width: 0; }
.routine-page .routine-consent-banner { width: auto; }

/* The copied shell is an opaque, reserved band on this helper route. */
.routine-page > header[data-homepage-region="01-header-hero-introduction"] {
  position: relative;
  z-index: 20;
  min-height: 0;
  background: var(--routine-paper) !important;
  color: var(--routine-ink);
  font-family: Arial, Helvetica, sans-serif;
}
.routine-page > header[data-homepage-region="01-header-hero-introduction"] [data-homepage-region-content] {
  min-height: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: var(--routine-paper) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--routine-soft-line);
}
.routine-page > header .hero-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 48px);
  width: min(calc(100% - 48px), 1520px);
  min-height: 124px;
  margin: 0 auto;
  padding: 20px 0;
  background: var(--routine-paper);
}
.routine-page > header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 150px;
  height: 66px;
  padding: 0 12px;
  border: 1px solid var(--routine-ink);
  border-radius: 18px;
  background: var(--routine-white);
  color: #fa7da9;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none;
}
.routine-page > header .brand span { color: var(--routine-violet); }
.routine-page > header .nav-panel {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: clamp(16px, 2.4vw, 40px);
  margin-left: auto;
}
.routine-page > header .nav-panel a,
.routine-page > header .phone {
  color: var(--routine-ink);
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}
.routine-page > header .nav-panel a:hover,
.routine-page > header .nav-panel a:focus-visible,
.routine-page > header .phone:hover,
.routine-page > header .phone:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.routine-page > header .phone {
  flex: 0 0 auto;
  margin-left: 0;
  padding-left: clamp(14px, 2vw, 32px);
  border-left: 3px solid #64d6ef;
}
.routine-page > header .nav-toggle {
  display: none;
  padding: 10px 16px;
  border: 1px solid var(--routine-ink);
  border-radius: 999px;
  background: var(--routine-white);
  color: var(--routine-ink);
  cursor: pointer;
}
.routine-page > header a:focus-visible,
.routine-page > header button:focus-visible,
.routine-page main a:focus-visible,
.routine-page main button:focus-visible,
.routine-page footer a:focus-visible,
.routine-page footer button:focus-visible {
  outline: 3px solid var(--routine-violet);
  outline-offset: 3px;
}

/* Search pattern B: an expandable panel keeps the header light until requested. */
.routine-search { position: relative; flex: 0 1 auto; display: flex; align-items: center; }
.routine-search__toggle,
.routine-search__submit {
  border: 1px solid var(--routine-ink);
  border-radius: 999px;
  background: var(--routine-white);
  color: var(--routine-ink);
  cursor: pointer;
  font-weight: 700;
}
.routine-search__toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 8px 14px; }
.routine-search__toggle span:first-child { font-size: 22px; line-height: .7; }
.routine-search__toggle:hover,
.routine-search__submit:hover { background: var(--routine-ink); color: var(--routine-white); }
.routine-search__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--routine-ink);
  border-radius: 20px;
  background: var(--routine-white);
  box-shadow: 10px 12px 0 var(--routine-lilac);
}
.routine-search__panel[hidden] { display: none; }
.routine-search__label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.routine-search__row { display: flex; gap: 8px; }
.routine-search__input { min-width: 0; flex: 1; padding: 10px 13px; border: 1px solid var(--routine-ink); border-radius: 999px; background: #fffaf8; color: var(--routine-ink); }
.routine-search__input:focus-visible { outline: 3px solid var(--routine-cyan); outline-offset: 2px; }
.routine-search__submit { padding: 8px 14px; }
.routine-search__status { min-height: 20px; margin: 10px 0 0; color: var(--routine-muted); font-size: 13px; }
.routine-search__results { display: grid; gap: 7px; margin: 8px 0 0; padding: 0; list-style: none; }
.routine-search__results a { display: grid; gap: 2px; padding: 9px 11px; border: 1px solid #c5b8d7; border-radius: 12px; text-decoration: none; }
.routine-search__results a:hover { background: var(--routine-cyan); }
.routine-search__results strong { font-size: 14px; }
.routine-search__results span { color: var(--routine-muted); font-size: 12px; }

.routine-section-label {
  margin: 0 0 18px;
  color: var(--routine-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.routine-section-heading { display: grid; grid-template-columns: minmax(220px, .76fr) minmax(0, 1.24fr); gap: 18px 80px; align-items: end; }
.routine-section-heading .routine-section-label { grid-column: 1 / -1; margin-bottom: -2px; }
.routine-section-heading h2 { margin: 0; font-size: clamp(42px, 5.8vw, 92px); letter-spacing: -.075em; line-height: .9; }
.routine-section-heading > p:last-child { max-width: 570px; margin: 0; color: var(--routine-muted); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.35; }

.routine-intro { background: linear-gradient(120deg, #fffaf6 0%, #f0e9ff 48%, #daf7f3 100%); }
.routine-intro__inner { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr); gap: clamp(44px, 8vw, 150px); align-items: center; width: min(calc(100% - 48px), 1520px); min-height: 670px; margin: 0 auto; padding: clamp(74px, 9vw, 150px) 0; }
.routine-intro__copy { max-width: 820px; }
.routine-intro__copy .routine-section-label { color: var(--routine-violet); }
.routine-intro h1 { max-width: 850px; margin: 0 0 34px; font-size: clamp(60px, 8vw, 132px); font-weight: 700; letter-spacing: -.085em; line-height: .88; }
.routine-intro__lead { max-width: 680px; margin: 0 0 36px; font-size: clamp(19px, 1.7vw, 26px); line-height: 1.28; }
.routine-intro__jump,
.routine-outline-link { display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px; border: 1px solid var(--routine-ink); border-radius: 999px; font-weight: 700; text-decoration: none; }
.routine-intro__jump:hover,
.routine-outline-link:hover { background: var(--routine-ink); color: var(--routine-white); }
.routine-intro__jump span,
.routine-outline-link span { font-size: 21px; }
.routine-intro__aside { display: grid; grid-template-columns: minmax(0, 1fr) 128px; align-items: end; gap: 18px; }
.routine-intro__media { height: 470px; margin: 0; border: 1px solid var(--routine-ink); border-radius: 48% 48% 0 0 / 22% 22% 0 0; overflow: hidden; background: var(--routine-cyan); }
.routine-intro__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.routine-intro__aside-note { padding: 18px 0; border-top: 1px solid var(--routine-ink); }
.routine-intro__aside-number { display: block; margin-bottom: 14px; color: var(--routine-violet); font-size: 42px; font-weight: 700; letter-spacing: -.08em; line-height: .9; }
.routine-intro__aside-note p { margin: 0; font-size: 15px; line-height: 1.3; }

.routine-moment { background: var(--routine-white); }
.routine-moment__inner { padding: clamp(76px, 9vw, 144px) 0; }
.routine-moment__layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); gap: clamp(32px, 7vw, 120px); align-items: stretch; margin-top: clamp(48px, 6vw, 84px); }
.routine-moment__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.routine-moment__choice { display: grid; grid-template-columns: 34px 1fr; gap: 4px 12px; min-height: 150px; padding: 20px; border: 1px solid var(--routine-line); border-radius: var(--routine-radius); background: var(--routine-white); color: var(--routine-ink); cursor: pointer; text-align: left; transition: transform .2s ease, background .2s ease; }
.routine-moment__choice:hover { transform: translateY(-4px); background: var(--routine-lilac); }
.routine-moment__choice.is-active { background: var(--routine-cyan); }
.routine-moment__choice.is-active { background: var(--routine-cyan); box-shadow: 8px 8px 0 rgba(145, 104, 243, .22); }
.routine-moment__choice > span { grid-row: span 2; color: var(--routine-violet); font-size: 16px; font-weight: 700; }
.routine-moment__choice strong { font-size: 21px; line-height: 1.05; }
.routine-moment__choice small { color: var(--routine-muted); font-size: 14px; line-height: 1.3; }
.routine-moment__answer { display: flex; flex-direction: column; justify-content: center; min-height: 314px; padding: clamp(26px, 4vw, 54px); border: 1px solid var(--routine-ink); border-radius: 50% 50% 22px 22px / 26% 26% 22px 22px; background: linear-gradient(145deg, var(--routine-pink), var(--routine-lilac)); }
.routine-moment__answer-kicker { margin: 0 0 22px; color: var(--routine-muted); font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.routine-moment__answer h3 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 58px); letter-spacing: -.07em; line-height: .93; }
.routine-moment__answer > p:not(.routine-moment__answer-kicker) { margin: 0 0 24px; color: #29272b; font-size: 17px; line-height: 1.4; }
.routine-moment__answer a { align-self: flex-start; font-weight: 700; text-decoration: none; }
.routine-moment__answer a:hover { text-decoration: underline; text-underline-offset: 4px; }

.routine-chapter { background: #f7f4ff; }
.routine-chapter--short { background: #f7f4ff; }
.routine-chapter--relaxed { background: #f1fbfb; }
.routine-chapter__inner { display: grid; grid-template-columns: 60px minmax(0, .92fr) minmax(300px, .88fr); gap: clamp(20px, 4vw, 74px); align-items: center; padding: clamp(76px, 10vw, 164px) 0; }
.routine-chapter__inner--reverse { grid-template-columns: minmax(300px, .88fr) minmax(0, .92fr); }
.routine-chapter__inner--reverse .routine-chapter__copy { grid-column: 2; grid-row: 1; }
.routine-chapter__inner--reverse .routine-chapter__media { grid-column: 1; grid-row: 1; }
.routine-chapter__marker { align-self: start; padding-top: 6px; color: var(--routine-violet); font-size: clamp(30px, 4vw, 56px); font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.routine-chapter h2 { margin: 0 0 28px; font-size: clamp(50px, 6.4vw, 100px); letter-spacing: -.085em; line-height: .88; }
.routine-chapter__lead { max-width: 650px; margin: 0 0 32px; font-size: clamp(18px, 1.5vw, 23px); line-height: 1.35; }
.routine-checklist { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.routine-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.3; }
.routine-checklist li > span:first-child { color: var(--routine-violet); font-size: 19px; line-height: 1; }
.routine-chapter__media { margin: 0; border: 1px solid var(--routine-ink); background: var(--routine-white); }
.routine-chapter__media--portrait { aspect-ratio: 1 / 1.08; border-radius: 48% 48% 22px 22px; overflow: hidden; }
.routine-chapter__media--landscape { aspect-ratio: 1.2 / 1; border-radius: 22px 48% 22px 22px; overflow: hidden; }
.routine-chapter__media img { display: block; width: 100%; height: calc(100% - 44px); object-fit: cover; }
.routine-chapter__media figcaption { min-height: 44px; padding: 12px 16px; color: var(--routine-muted); font-size: 13px; font-weight: 700; }
.routine-note-card { gap: 16px; align-items: center; max-width: 600px; margin: 28px 0; padding: 18px; border: 1px solid var(--routine-line); border-radius: 18px; background: rgba(255,255,255,.68); }
.routine-note-card__symbol { color: var(--routine-violet); font-size: 28px; font-weight: 700; }
.routine-note-card p { margin: 0; font-size: 16px; line-height: 1.35; }
.routine-text-link { font-weight: 700; text-decoration: none; }
.routine-text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.routine-focus { background: var(--routine-white); }
.routine-focus .routine-container { padding: clamp(76px, 10vw, 150px) 0; }
.routine-focus__heading { margin-bottom: clamp(46px, 6vw, 82px); }
.routine-focus__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.routine-focus__card { min-height: 276px; padding: 28px; border: 1px solid var(--routine-ink); border-radius: var(--routine-radius); }
.routine-focus__card--lilac { background: var(--routine-lilac); }
.routine-focus__card--cyan { margin-top: 46px; background: var(--routine-cyan); }
.routine-focus__card--pink { background: var(--routine-pink); }
.routine-focus__number { display: block; margin-bottom: 48px; color: var(--routine-violet); font-size: 19px; font-weight: 700; }
.routine-focus__card h3 { margin: 0 0 14px; font-size: clamp(28px, 3vw, 46px); letter-spacing: -.07em; line-height: .95; }
.routine-focus__card p { max-width: 300px; margin: 0; color: #29272b; font-size: 16px; line-height: 1.4; }

.routine-exploration { background: linear-gradient(110deg, #fff9f7, #f0e7ff); }
.routine-exploration__inner { display: grid; grid-template-columns: minmax(0, .76fr) minmax(360px, 1.24fr); gap: clamp(38px, 8vw, 150px); align-items: center; padding: clamp(76px, 9vw, 148px) 0; }
.routine-exploration__copy h2,
.routine-social__copy h2 { margin: 0 0 24px; font-size: clamp(52px, 6vw, 94px); letter-spacing: -.08em; line-height: .88; }
.routine-exploration__copy > p:not(.routine-section-label),
.routine-social__copy > p:not(.routine-section-label) { max-width: 550px; margin: 0 0 30px; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.38; }
.routine-exploration__media { aspect-ratio: 1.5 / 1; margin: 0; border: 1px solid var(--routine-ink); border-radius: 48% 22px 22px 22px; background: var(--routine-cyan); }
.routine-exploration__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.routine-social { background: var(--routine-pink); }
.routine-social__inner { display: grid; grid-template-columns: minmax(360px, 1.1fr) minmax(0, .9fr); gap: clamp(40px, 8vw, 150px); align-items: center; padding: clamp(76px, 9vw, 148px) 0; }
.routine-social__media { aspect-ratio: 1.42 / 1; margin: 0; border: 1px solid var(--routine-ink); border-radius: 22px 48% 22px 22px; overflow: hidden; background: var(--routine-white); }
.routine-social__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.routine-social__copy .routine-section-label { color: #5b398a; }
.routine-social__signals { display: flex; flex-wrap: wrap; gap: 10px; }
.routine-social__signals span { padding: 9px 13px; border: 1px solid var(--routine-ink); border-radius: 999px; background: rgba(255,255,255,.5); font-size: 13px; font-weight: 700; }

.routine-shortlist { background: var(--routine-white); }
.routine-shortlist__inner { padding: clamp(76px, 10vw, 150px) 0; }
.routine-shortlist__workspace { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(300px, .86fr); gap: clamp(30px, 6vw, 100px); margin-top: clamp(48px, 6vw, 84px); }
.routine-shortlist__options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.routine-shortlist__option { display: grid; grid-template-columns: 32px 1fr; gap: 4px 10px; min-height: 126px; padding: 18px; border: 1px solid var(--routine-line); border-radius: 20px; background: var(--routine-white); color: var(--routine-ink); cursor: pointer; text-align: left; }
.routine-shortlist__option:hover,
.routine-shortlist__option.is-selected { background: var(--routine-lilac); box-shadow: 6px 6px 0 rgba(100, 201, 239, .48); }
.routine-shortlist__option > span { grid-row: span 2; color: var(--routine-violet); font-weight: 700; }
.routine-shortlist__option strong { font-size: 19px; line-height: 1.05; }
.routine-shortlist__option small { color: var(--routine-muted); line-height: 1.25; }
.routine-shortlist__saved { padding: 28px; border: 1px solid var(--routine-ink); border-radius: 22px; background: linear-gradient(145deg, var(--routine-cyan), #f6efff); }
.routine-shortlist__saved-label { margin: 0 0 12px; color: var(--routine-muted); font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.routine-shortlist__count { margin: 0 0 22px; font-size: clamp(28px, 3vw, 46px); font-weight: 700; letter-spacing: -.07em; line-height: .95; }
.routine-shortlist__saved ul { display: grid; gap: 8px; min-height: 58px; margin: 0 0 22px; padding: 0; list-style: none; }
.routine-shortlist__saved li { padding: 9px 11px; border: 1px solid rgba(8,8,8,.45); border-radius: 10px; background: rgba(255,255,255,.52); font-weight: 700; }
.routine-shortlist__empty { color: var(--routine-muted); font-size: 14px; font-weight: 400; }
.routine-shortlist__saved li.routine-shortlist__empty { color: var(--routine-muted); font-size: 14px; font-weight: 400; }
.routine-shortlist__clear { padding: 9px 14px; border: 1px solid var(--routine-ink); border-radius: 999px; background: transparent; color: var(--routine-ink); cursor: pointer; font-weight: 700; }
.routine-shortlist__clear:hover { background: var(--routine-ink); color: var(--routine-white); }

/* Footer links inherit the homepage shell's spacing while retaining their destinations. */
.routine-page .site-footer__topics a { display: block; color: inherit; font-size: 18px; line-height: 20px; text-decoration: none; }
.routine-page .site-footer__topics a:hover,
.routine-page .site-footer__topics a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.routine-page .site-footer__topics { display: flex; flex-direction: column; gap: 24px; }
.routine-page .site-footer__settings { align-self: flex-start; color: inherit; cursor: pointer; font: inherit; }
.routine-page .site-footer__company a { color: inherit; }

.routine-consent-settings { width: min(92vw, 480px); padding: 0; border: 1px solid var(--routine-ink); border-radius: 18px; background: var(--routine-white); color: var(--routine-ink); box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.routine-consent-settings::backdrop { background: rgba(8,8,8,.45); }
.routine-consent-settings__form { padding: 30px; }
.routine-consent-settings__form h2 { margin: 0 0 12px; font-size: 34px; letter-spacing: -.06em; line-height: .95; }
.routine-consent-settings__form > p:not(.routine-section-label) { margin: 0 0 22px; color: var(--routine-muted); }
.routine-consent-settings__choice { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-top: 1px solid var(--routine-soft-line); border-bottom: 1px solid var(--routine-soft-line); font-weight: 700; }
.routine-consent-settings__choice input { width: 18px; height: 18px; accent-color: var(--routine-violet); }
.routine-consent-settings__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.routine-consent-settings__actions button { min-height: 42px; padding: 9px 15px; border: 1px solid var(--routine-ink); border-radius: 22px; background: var(--routine-white); color: var(--routine-ink); cursor: pointer; font-weight: 700; }
.routine-consent-settings__actions button[type="submit"] { background: var(--routine-ink); color: var(--routine-white); }
.routine-consent-settings__actions button:hover { background: var(--routine-cyan); color: var(--routine-ink); }

@media (max-width: 1180px) {
  .routine-page > header .hero-nav { width: calc(100% - 40px); gap: 18px; }
  .routine-page > header .nav-panel { gap: 16px; }
  .routine-page > header .nav-panel a,
  .routine-page > header .phone { font-size: 14px; }
  .routine-page > header .phone { padding-left: 16px; }
  .routine-intro__inner { gap: 48px; }
  .routine-intro__aside { grid-template-columns: minmax(0, 1fr) 100px; }
  .routine-chapter__inner { grid-template-columns: 40px minmax(0, 1fr) minmax(260px, .8fr); gap: 28px; }
  .routine-chapter__inner--reverse { grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .routine-container,
  .routine-intro__inner { width: calc(100% - 40px); }
  .routine-page > header .hero-nav { flex-wrap: wrap; width: calc(100% - 40px); min-height: 92px; padding: 16px 0; }
  .routine-page > header .brand { width: 140px; height: 58px; }
  .routine-page > header .nav-toggle { display: block; margin-left: auto; }
  .routine-page > header .nav-panel { display: none; flex-basis: 100%; flex-direction: column; align-items: flex-start; gap: 14px; margin-left: 0; padding: 18px; border: 1px solid var(--routine-ink); border-radius: 16px; background: var(--routine-white); }
  .routine-page > header .nav-panel.is-open,
  .routine-page > header .nav-panel[data-nav-panel-open] { display: flex; }
  .routine-page > header .phone { order: 4; width: 100%; margin: 0; padding: 14px 0 0; border-top: 1px solid var(--routine-soft-line); border-left: 0; }
  .routine-search { margin-left: 0; }
  .routine-search__toggle { min-height: 40px; padding-inline: 11px; }
  .routine-search__toggle span:last-child { display: none; }
  .routine-search__panel { position: fixed; top: 108px; right: 20px; left: 20px; width: auto; }
  .routine-section-heading { display: block; }
  .routine-section-heading h2 { margin-bottom: 22px; }
  .routine-intro__inner { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding: 68px 0 76px; }
  .routine-intro h1 { margin-bottom: 28px; font-size: clamp(54px, 15vw, 86px); }
  .routine-intro__lead { font-size: 18px; }
  .routine-intro__aside { grid-template-columns: minmax(0, 1fr) 104px; }
  .routine-intro__media { height: 360px; }
  .routine-moment__inner,
  .routine-focus .routine-container,
  .routine-shortlist__inner { padding-block: 68px; }
  .routine-moment__layout,
  .routine-exploration__inner,
  .routine-social__inner,
  .routine-shortlist__workspace { display: flex; flex-direction: column; margin-top: 42px; }
  .routine-moment__choices,
  .routine-shortlist__options { grid-template-columns: 1fr; }
  .routine-moment__answer { min-height: 280px; }
  .routine-chapter__inner,
  .routine-chapter__inner--reverse { display: flex; flex-direction: column; align-items: stretch; gap: 34px; padding-block: 68px; }
  .routine-chapter__inner--reverse .routine-chapter__copy,
  .routine-chapter__inner--reverse .routine-chapter__media { order: initial; }
  .routine-chapter__marker { order: -1; }
  .routine-chapter h2 { font-size: clamp(54px, 15vw, 86px); }
  .routine-chapter__media--portrait { width: min(100%, 420px); align-self: center; }
  .routine-chapter__media--landscape { width: 100%; }
  .routine-focus__grid { grid-template-columns: 1fr; }
  .routine-focus__card--cyan { margin-top: 0; }
  .routine-exploration__inner,
  .routine-social__inner { padding-block: 68px; }
  .routine-exploration__media,
  .routine-social__media { width: 100%; }
  .routine-social__media { order: 2; }
  .routine-social__copy { order: 1; }
  .routine-shortlist__saved { width: 100%; }
  .routine-page .site-footer__topics { gap: 16px; }
  .routine-consent-settings__form { padding: 23px; }
  .routine-consent-settings__actions { flex-direction: column; }
  .routine-consent-settings__actions button { width: 100%; }
}
