:root {
  --ivory: #f6f1e7;
  --ivory-deep: #eee5d7;
  --paper: #fbf8f1;
  --ink: #2c2925;
  --ink-soft: #5e574f;
  --charcoal: #302d29;
  --olive: #596148;
  --olive-dark: #454c37;
  --brown: #875b3d;
  --brown-soft: #986d4d;
  --gold: #b08b59;
  --line: #d8ccbc;
  --line-dark: #a9957d;
  --white: #fffdf8;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --hand: "Klee One", "Yu Mincho", serif;
  --page: 1200px;
  --reading: 720px;
  --shadow: 0 16px 40px rgb(61 47 32 / 8%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgb(255 255 255 / 58%), transparent 28rem),
    repeating-linear-gradient(90deg, rgb(107 90 67 / 1.5%) 0 1px, transparent 1px 5px),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure,
blockquote {
  margin: 0;
}

a {
  color: inherit;
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
  text-wrap: pretty;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.05rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
  color: var(--white);
  background: var(--olive);
}

:focus-visible {
  outline: 3px solid #1e6bb8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: .6rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(152 109 77 / 18%);
  background: rgb(246 241 231 / 92%);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 48px), var(--page));
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 118px;
  max-height: 48px;
  object-fit: contain;
}

.brand span {
  padding-left: .8rem;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .14em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.4vw, 2rem);
}

.site-nav a {
  position: relative;
  font-size: .78rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Reading guidance: content stays readable while motion quietly hands focus forward. */
[data-reading-step] {
  --reading-delay: 0ms;
  --reading-rest-opacity: 1;
}

[data-reading-step="2"] { --reading-delay: 70ms; }
[data-reading-step="3"] { --reading-delay: 140ms; }
[data-reading-step="4"] { --reading-delay: 210ms; }
[data-reading-step="5"] { --reading-delay: 280ms; }
[data-reading-step="6"] { --reading-delay: 350ms; }

.motion-ready [data-reading-sequence] [data-reading-step] {
  transition:
    opacity 360ms cubic-bezier(.22, 1, .36, 1),
    translate 460ms cubic-bezier(.22, 1, .36, 1),
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.motion-ready [data-reading-sequence]:not(.is-reading) [data-reading-step] {
  opacity: calc(var(--reading-rest-opacity) * .74);
  translate: 0 10px;
}

.motion-ready [data-reading-sequence]:not(.is-reading) [data-reading-direction="left"] {
  translate: 12px 0;
}

.motion-ready [data-reading-sequence].is-reading [data-reading-step] {
  opacity: var(--reading-rest-opacity);
  translate: 0 0;
  transition-delay: var(--reading-delay);
}

.motion-ready .compare-grid.is-reading .compare-card--featured {
  border-color: var(--brown);
  box-shadow: 0 18px 34px rgb(135 91 61 / 10%);
}

.motion-ready .case-grid.is-reading .case-card--accent,
.motion-ready .price-grid.is-reading .price-card--featured {
  box-shadow: 0 18px 34px rgb(135 91 61 / 9%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  min-height: calc(100svh - 78px);
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: clamp(64px, 8vw, 120px) clamp(30px, 4vw, 64px);
}

.quiet-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 2rem;
  padding: .35rem 1rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: var(--olive-dark);
  font-size: .73rem;
  letter-spacing: .06em;
}

.quiet-badge::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.55rem, 4.5vw, 4rem);
  line-height: 1.4;
  letter-spacing: .08em;
}

.hero__lead {
  margin: 2rem 0 1.65rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  letter-spacing: .11em;
}

.hero__intro {
  max-width: 620px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .94rem;
}

.hero__intro p {
  margin-bottom: .65rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 640px;
  overflow: hidden;
  background: var(--ivory-deep);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__visual::before {
  inset: 0;
  background:
    radial-gradient(circle at 54% 48%, transparent 34%, rgb(246 241 231 / 10%) 68%, rgb(246 241 231 / 42%) 100%),
    linear-gradient(180deg, rgb(246 241 231 / 15%) 0%, transparent 24%, transparent 70%, rgb(238 229 215 / 26%) 100%);
}

.hero__visual::after {
  inset: 0 auto 0 0;
  width: 24%;
  background: linear-gradient(90deg, var(--ivory) 0%, rgb(246 241 231 / 72%) 24%, transparent 100%);
}

.hero__visual img {
  --reading-rest-opacity: .9;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  opacity: .9;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.58) contrast(.86) brightness(1.07) sepia(.12);
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: .35rem .65rem;
  color: var(--white);
  background: rgb(44 41 37 / 65%);
  font-size: .67rem;
}

.hero__side-note {
  position: absolute;
  bottom: 4.5rem;
  left: .65rem;
  color: var(--brown);
  font-family: var(--hand);
  font-size: .8rem;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.section {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
  padding-block: clamp(84px, 10vw, 138px);
}

.section--compact {
  padding-block: clamp(56px, 7vw, 88px);
}

.section-heading {
  max-width: var(--reading);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-heading--wide {
  max-width: 920px;
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  align-items: end;
  gap: 3rem;
  max-width: none;
}

.section-heading > p:last-child {
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
}

.eyebrow {
  margin-bottom: .75rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.paper-panel,
.profile,
.support-panel,
.origin,
.small-changes,
.faq-list {
  background:
    linear-gradient(112deg, rgb(255 255 255 / 48%), transparent 42%),
    var(--paper);
  border: 1px solid rgb(216 204 188 / 72%);
  box-shadow: var(--shadow);
}

.concerns__panel {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 18px;
}

.concerns__intro h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.concerns__intro img {
  width: 90%;
  max-height: 190px;
  margin-top: 1.5rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.check-list,
.fit-card ul {
  padding: 0;
  list-style: none;
}

.check-list--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
}

.check-list li,
.fit-card li {
  position: relative;
  padding: .8rem .25rem .8rem 2rem;
  border-bottom: 1px dashed var(--line);
}

.check-list li::before,
.fit-card--yes li::before {
  content: "✓";
  position: absolute;
  top: .84rem;
  left: .25rem;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .68rem;
}

.fact-note {
  margin-top: 1.4rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--olive);
  background: rgb(89 97 72 / 6%);
  color: var(--ink-soft);
  font-size: .88rem;
}

.fact-note p:last-child {
  margin-bottom: 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.compare-card {
  position: relative;
  min-height: 330px;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.compare-card--featured {
  border-color: var(--brown);
  background: rgb(251 248 241 / 68%);
  transform: translateY(-10px);
}

.compare-card__label {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.compare-card > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
  text-align: left;
}

.tape-label {
  position: absolute;
  top: -16px;
  left: 50%;
  min-width: 92px;
  margin: 0;
  padding: .2rem .8rem;
  color: #6d5542;
  background: #e9d5b6;
  box-shadow: 0 2px 4px rgb(77 58 41 / 12%);
  font-family: var(--hand);
  font-size: .75rem;
  transform: translateX(-50%) rotate(-1deg);
}

.people-symbol {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: .35rem;
  height: 100px;
  margin: 1.2rem 0;
}

.people-symbol i {
  position: relative;
  display: block;
  width: 42px;
  height: 56px;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(145deg, #797268, #4d4943);
}

.people-symbol i::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #68625a;
  transform: translateX(-50%);
}

.people-symbol--many i {
  width: 36px;
  height: 49px;
}

.people-symbol--many i:nth-child(2) {
  height: 58px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(24px, 4vw, 52px);
  background: var(--ivory-deep);
  border-radius: 18px;
}

.feature-split__visual {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgb(57 48 38 / 12%);
}

.feature-split__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.72) sepia(.08);
}

.feature-split__body h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.feature-split__body p:not(.hand-note) {
  color: var(--ink-soft);
}

.hand-note,
.hand-lead {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brown);
  font-family: var(--hand);
  letter-spacing: .07em;
}

.hand-note::after,
.hand-lead::after {
  content: "";
  display: block;
  width: 74%;
  height: 8px;
  margin-top: .15rem;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: .7;
}

.people {
  width: min(calc(100% - 32px), 1280px);
}

.profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, .65fr) minmax(0, 1.35fr) minmax(210px, .62fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  margin-bottom: clamp(48px, 8vw, 92px);
  padding: clamp(28px, 5vw, 64px);
  border-radius: 16px;
}

.profile--rika {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  grid-template-areas:
    "story visual"
    "note visual";
  background: linear-gradient(100deg, var(--paper) 0 57%, #e8d9c5 100%);
}

.profile--rika .profile__story {
  grid-area: story;
}

.profile--rika .rika-visual {
  grid-area: visual;
}

.profile--rika .paper-note {
  grid-area: note;
  justify-self: end;
  width: min(100%, 520px);
}

.polaroid {
  position: sticky;
  top: 110px;
  padding: .7rem .7rem 1.3rem;
  background: var(--white);
  box-shadow: 0 12px 20px rgb(55 45 34 / 18%);
  transform: rotate(-1.5deg);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.78) contrast(.93) sepia(.06);
}

.polaroid figcaption {
  padding-top: .75rem;
  font-family: var(--hand);
  font-size: 1.05rem;
  text-align: right;
}

.masking-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 86px;
  height: 30px;
  background: rgb(224 201 164 / 72%);
  transform: translateX(-50%) rotate(-2deg);
  clip-path: polygon(3% 3%, 98% 7%, 94% 95%, 0 91%);
}

.profile__role {
  margin-bottom: .25rem;
  color: var(--brown);
  font-size: .78rem;
  letter-spacing: .14em;
}

.profile__story h3 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.profile__story > p:not(.profile__role, .hand-lead) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .91rem;
}

.paper-note {
  position: relative;
  margin-top: 1.2rem;
  padding: 2.5rem 1.5rem 1.5rem;
  background: #f0e4cf;
  border: 1px solid rgb(160 127 88 / 20%);
  box-shadow: 0 10px 20px rgb(66 50 34 / 12%);
  transform: rotate(1.5deg);
}

.paper-note h4 {
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1rem;
}

.paper-note ul {
  padding-left: 1.2rem;
  font-size: .78rem;
}

.paper-note li {
  margin-bottom: .4rem;
}

.paper-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .72rem;
}

.rika-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: 160px 160px 18px 18px;
}

.rika-visual img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.rika-visual figcaption {
  padding: .7rem .5rem;
  color: var(--ink-soft);
  background: rgb(251 248 241 / 80%);
  font-size: .66rem;
  line-height: 1.65;
}

.support-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  border-radius: 16px;
}

.support-panel > .section-heading {
  position: relative;
  z-index: 2;
}

.support-panel__visual {
  --reading-rest-opacity: .42;
  position: absolute;
  z-index: 0;
  inset: clamp(11rem, 16vw, 13rem) 0 auto;
  opacity: .42;
  pointer-events: none;
}

.support-panel__visual img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.support-panel__roles {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 330px;
}

.support-panel__roles > div {
  padding: 2rem;
  background: rgb(251 248 241 / 82%);
  border: 1px solid rgb(216 204 188 / 70%);
  border-radius: 50% 50% 16px 16px;
  text-align: center;
}

.support-panel__roles span {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .15rem .65rem;
  color: var(--white);
  background: var(--olive);
  border-radius: 999px;
  font-size: .68rem;
}

.support-panel__roles p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .84rem;
}

.support-panel__times {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.3rem;
}

.support-panel__closing {
  position: relative;
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
}

.cases {
  width: min(calc(100% - 32px), 1280px);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(251 248 241 / 58%);
}

.case-card--accent {
  border-color: var(--brown);
}

.case-card__number {
  align-self: center;
  margin-bottom: 1rem;
  padding: .15rem .9rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .12em;
}

.case-card > img {
  align-self: center;
  width: min(64%, 180px);
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
}

.case-card h3 {
  margin-bottom: .75rem;
  font-size: 1.2rem;
  text-align: center;
}

.case-card p:not(.case-card__number, .case-card__meta, .disclaimer) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .84rem;
}

.case-card__meta {
  margin-bottom: 1.2rem;
  color: var(--brown);
  font-size: .76rem;
  text-align: center;
}

.disclaimer {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1rem;
  color: #8a8278;
  font-size: .67rem;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .9fr) minmax(300px, 1fr);
  min-height: 580px;
  margin-top: 1.5rem;
  color: #f4eee4;
  background: var(--charcoal);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.case-feature__visual {
  position: relative;
  min-height: 100%;
}

.case-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, var(--charcoal));
}

.case-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  filter: saturate(.72) sepia(.06);
}

.case-feature__visual figcaption {
  position: absolute;
  z-index: 1;
  right: .75rem;
  bottom: .7rem;
  left: .75rem;
  color: rgb(244 238 228 / 72%);
  font-size: .6rem;
  line-height: 1.5;
}

.case-feature__quote,
.case-feature__story {
  align-self: center;
  padding: clamp(28px, 4vw, 56px);
}

.case-feature__quote .case-card__number {
  display: inline-block;
  border-color: rgb(244 238 228 / 40%);
}

.case-feature__quote h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.case-feature__quote blockquote {
  position: relative;
  margin-top: 2rem;
  color: #e9d9b8;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.9;
}

.case-feature__quote blockquote::before {
  content: "“";
  position: absolute;
  top: -1.3rem;
  left: -1rem;
  color: #a58b55;
  font-size: 3rem;
}

.case-feature__story {
  color: rgb(244 238 228 / 78%);
  font-family: var(--serif);
  font-size: .82rem;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  margin-top: clamp(40px, 6vw, 72px);
  padding: 2rem;
}

.section-cta--light {
  border-block: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 64px;
  padding: .8rem 1.35rem .8rem 1rem;
  color: var(--white);
  background: linear-gradient(135deg, #65734d, #4b5539);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgb(72 85 52 / 22%);
  font-family: var(--serif);
  font-size: .94rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cta-button img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 4px;
  background: white;
  border-radius: 50%;
}

.cta-button i {
  margin-left: .3rem;
  font-style: normal;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgb(72 85 52 / 28%);
  filter: brightness(1.04);
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(84px, 10vw, 130px);
  padding: clamp(30px, 5vw, 62px);
  border-radius: 16px;
}

.origin__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.origin figure img {
  width: 100%;
  mix-blend-mode: multiply;
}

.name-formula {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin: 2rem 0;
  padding: 1.3rem;
  border-block: 1px solid var(--line);
  font-family: var(--serif);
}

.name-formula span {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  text-align: center;
}

.name-formula small {
  display: block;
  margin-top: .25rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .12em;
}

.name-formula b {
  color: var(--brown);
  font-weight: 400;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(80px, 10vw, 130px);
}

.values-grid article {
  position: relative;
  min-height: 285px;
  padding: 2rem 1.4rem;
  border: 1px solid var(--line);
  background: rgb(251 248 241 / 52%);
}

.values-grid article:nth-child(even) {
  transform: translateY(24px);
}

.values-grid span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.values-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.values-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.day-flow {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(260px, .48fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-bottom: clamp(84px, 10vw, 130px);
}

.day-flow__heading {
  align-self: center;
}

.day-flow__heading > p:last-child {
  margin-top: 1.4rem;
  color: var(--ink-soft);
}

.day-flow figure {
  overflow: hidden;
  min-height: 580px;
  border-radius: 150px 150px 10px 10px;
}

.day-flow figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) sepia(.08);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 22px;
  width: 1px;
  background: var(--line-dark);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brown);
  background: var(--ivory);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: var(--serif);
}

.timeline h3 {
  font-size: .98rem;
}

.timeline p {
  margin: .2rem 0 0;
  color: var(--ink-soft);
  font-size: .75rem;
}

.small-changes {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 16px;
}

.small-changes__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.small-changes__copy .check-list li {
  padding-block: .5rem;
}

.small-changes__copy .check-list li::before {
  top: .57rem;
}

.small-changes figure img {
  width: 100%;
  mix-blend-mode: multiply;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.fit-card {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: rgb(251 248 241 / 56%);
}

.fit-card--yes {
  border-top: 4px solid var(--olive);
}

.fit-card--other {
  border-top: 4px solid var(--brown);
}

.fit-card__mark {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.fit-card h3 {
  margin-bottom: 1.5rem;
}

.fit-card ul {
  margin-bottom: 0;
}

.fit-card--other li {
  padding-left: 2rem;
}

.fit-card--other li::before {
  content: "×";
  position: absolute;
  top: .76rem;
  left: .35rem;
  color: var(--brown);
  font-family: var(--serif);
}

.fit__closing {
  max-width: 700px;
  margin: 2.5rem auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  text-align: center;
}

.pricing {
  width: min(calc(100% - 32px), 1280px);
  padding-inline: clamp(20px, 4vw, 56px);
  background: var(--ivory-deep);
  border-radius: 18px;
}

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

.price-card {
  position: relative;
  padding: clamp(28px, 4vw, 48px) 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.price-card--featured {
  border-color: var(--brown);
  transform: translateY(-10px);
}

.price-card__for {
  margin-bottom: .4rem;
  color: var(--ink-soft);
  font-size: .7rem;
}

.price-card h3 {
  font-size: 1.15rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
  margin: 1.2rem 0;
  font-family: var(--serif);
  white-space: nowrap;
}

.price strong {
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 500;
  letter-spacing: .02em;
}

.price span {
  font-size: .75rem;
}

.price-card > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.pricing__note {
  max-width: 900px;
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: .83rem;
  text-align: center;
}

.pricing__note p:last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(14px, 3vw, 32px);
  border-radius: 14px;
}

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

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr 28px;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem .8rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.faq-list summary h3 {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.faq-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 2px;
  left: 2px;
  height: 1px;
  background: var(--brown);
  transition: transform .2s ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 3.8rem 1.5rem 3.7rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .9rem;
}

.faq-answer p {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  color: var(--white);
  background: var(--charcoal) url("../assets/images/gym-interior.webp") center 46% / cover no-repeat;
  overflow: hidden;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(34 32 29 / 97%) 0 52%, rgb(34 32 29 / 76%) 73%, rgb(34 32 29 / 88%));
}

.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 120px);
}

.final-cta__inner > div {
  max-width: 720px;
}

.final-cta .eyebrow {
  color: #d8c39a;
}

.final-cta h2 {
  font-size: 1.1rem;
}

.final-cta__lead {
  margin: 1rem 0 1.6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.65;
}

.final-cta__inner > div > p:not(.eyebrow, .final-cta__lead) {
  color: rgb(255 253 248 / 76%);
  font-size: .86rem;
}

.cta-button--large {
  min-height: 84px;
  padding-inline: 1.4rem 1.8rem;
  font-size: 1rem;
}

.site-footer {
  padding: clamp(48px, 7vw, 84px) 0 1.5rem;
  background: #ece4d8;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(320px, 1fr) 180px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.site-footer__brand img {
  display: block;
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer__home-link {
  display: inline-block;
}

.site-footer__home-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.site-footer__brand p,
.site-footer__info {
  color: var(--ink-soft);
  font-size: .76rem;
}

.site-footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__info address {
  font-style: normal;
}

.site-footer__info p {
  margin-bottom: .35rem;
}

.site-footer__photo {
  overflow: hidden;
  height: 160px;
  border: 7px solid var(--paper);
  box-shadow: 0 8px 18px rgb(55 45 34 / 12%);
  transform: rotate(1.5deg);
}

.site-footer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.copyright {
  width: min(calc(100% - 48px), var(--page));
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 1020px) {
  .site-nav a:nth-child(3),
  .site-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
  }

  .hero__copy {
    padding-inline: 40px;
  }

  .profile {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .profile .paper-note {
    grid-column: 2;
    width: 100%;
  }

  .profile--rika {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .profile--rika .paper-note {
    grid-column: auto;
  }

  .case-feature {
    grid-template-columns: .85fr 1.15fr;
  }

  .case-feature__visual {
    grid-row: 1 / 3;
  }

  .case-feature__quote,
  .case-feature__story {
    grid-column: 2;
  }

  .case-feature__quote {
    padding-bottom: 0;
  }

  .case-feature__story {
    padding-top: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid article:nth-child(even) {
    transform: none;
  }

  .day-flow {
    grid-template-columns: .7fr .45fr 1fr;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .cta-button--large {
    justify-self: start;
  }
}

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

  body {
    font-size: 15px;
    line-height: 1.9;
  }

  .site-header__inner {
    width: min(calc(100% - 32px), var(--page));
    min-height: 66px;
  }

  .brand img {
    width: 100px;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a:nth-child(n+3) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__copy {
    width: min(100%, 680px);
    padding: 64px 28px 42px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 4.2rem);
  }

  .hero__visual {
    min-height: 520px;
    margin-left: 15%;
    border-radius: 160px 0 0;
  }

  .hero__visual::after {
    display: none;
  }

  .hero__visual img {
    min-height: 520px;
  }

  .hero__side-note {
    bottom: 2.5rem;
  }

  .section {
    width: min(calc(100% - 32px), var(--page));
  }

  .concerns__panel,
  .feature-split,
  .section-heading--split,
  .origin,
  .small-changes,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .concerns__intro {
    display: grid;
    grid-template-columns: 1fr 160px;
    align-items: end;
    gap: 1rem;
  }

  .concerns__intro .eyebrow {
    grid-column: 1 / -1;
  }

  .concerns__intro img {
    width: 100%;
    margin: 0;
  }

  .compare-grid,
  .case-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-template-rows: auto 1fr;
    min-height: 0;
    text-align: left;
  }

  .compare-card--featured,
  .price-card--featured {
    transform: none;
  }

  .compare-card__label {
    grid-column: 1;
  }

  .people-symbol {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
  }

  .compare-card > p:last-child {
    grid-column: 1;
  }

  .profile,
  .profile--rika {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .profile--rika .profile__story,
  .profile--rika .rika-visual,
  .profile--rika .paper-note {
    grid-area: auto;
  }

  .profile .paper-note {
    grid-column: auto;
  }

  .polaroid,
  .rika-visual {
    position: relative;
    top: auto;
  }

  .polaroid {
    width: min(78%, 360px);
    margin-inline: auto;
  }

  .rika-visual {
    width: min(88%, 440px);
    margin-inline: auto;
    order: -1;
  }

  .support-panel__roles {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .support-panel__visual {
    inset: 12rem 0 auto;
  }

  .support-panel__roles > div {
    border-radius: 14px;
  }

  .support-panel__times {
    text-align: center;
  }

  .case-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 1.2rem;
  }

  .case-card__number,
  .case-card h3,
  .case-card__meta,
  .case-card > p:not(.case-card__number) {
    grid-column: 2;
    text-align: left;
  }

  .case-card > img {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 100%;
  }

  .case-card .disclaimer {
    grid-column: 1 / -1;
  }

  .case-feature {
    grid-template-columns: 1fr;
  }

  .case-feature__visual,
  .case-feature__quote,
  .case-feature__story {
    grid-column: 1;
    grid-row: auto;
  }

  .case-feature__visual {
    min-height: 380px;
  }

  .case-feature__visual::after {
    background: linear-gradient(0deg, var(--charcoal), transparent 45%);
  }

  .section-cta {
    flex-direction: column;
    text-align: center;
  }

  .origin figure {
    order: -1;
  }

  .day-flow {
    grid-template-columns: .72fr 1fr;
  }

  .day-flow__heading {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 170px;
  }

  .site-footer__info {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer__photo {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 260px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 14px;
    letter-spacing: .025em;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .site-nav a:nth-child(n+2) {
    display: none;
  }

  .hero__copy {
    padding: 52px 20px 34px;
  }

  .quiet-badge {
    margin-bottom: 1.3rem;
    font-size: .66rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    letter-spacing: .06em;
    line-height: 1.5;
  }

  .hero__lead {
    margin-top: 1.4rem;
  }

  .hero__visual {
    min-height: 430px;
    margin-left: 8%;
  }

  .hero__visual img {
    min-height: 430px;
  }

  .section {
    width: min(calc(100% - 24px), var(--page));
    padding-block: 72px;
  }

  .section--compact {
    padding-block: 42px;
  }

  .concerns__panel,
  .profile,
  .support-panel,
  .origin,
  .small-changes,
  .fit-card {
    padding: 24px 18px;
  }

  .concerns__intro {
    grid-template-columns: 1fr;
  }

  .concerns__intro img {
    display: none;
  }

  .check-list--two {
    grid-template-columns: 1fr;
  }

  .compare-card {
    display: block;
    padding: 1.6rem;
  }

  .people-symbol {
    height: 92px;
    margin: .7rem 0;
  }

  .feature-split {
    padding: 18px;
  }

  .polaroid {
    width: 92%;
  }

  .paper-note {
    transform: none;
  }

  .case-card {
    display: block;
    padding: 24px 20px;
  }

  .case-card > img {
    width: min(54%, 160px);
    margin-inline: auto;
  }

  .case-card__number,
  .case-card h3,
  .case-card__meta {
    text-align: center;
  }

  .case-feature {
    border-width: 4px;
  }

  .case-feature__visual {
    min-height: 270px;
  }

  .case-feature__quote,
  .case-feature__story {
    padding: 24px 20px;
  }

  .cta-button {
    width: 100%;
    min-height: 68px;
    padding-inline: .9rem;
    font-size: .82rem;
  }

  .name-formula {
    gap: .3rem;
    padding-inline: .4rem;
  }

  .name-formula span {
    font-size: 1.25rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    min-height: 0;
  }

  .day-flow {
    grid-template-columns: 1fr;
  }

  .day-flow figure {
    min-height: 320px;
    border-radius: 120px 120px 12px 12px;
  }

  .timeline {
    gap: 1.4rem;
  }

  .small-changes figure {
    order: -1;
  }

  .price-card {
    padding: 30px 18px;
  }

  .faq-list {
    padding: 8px 12px;
  }

  .faq-list summary {
    grid-template-columns: auto 1fr 22px;
    gap: .65rem;
    padding-inline: .2rem;
  }

  .faq-list summary h3 {
    font-size: .86rem;
  }

  .faq-answer {
    padding: 0 .4rem 1.3rem 2.2rem;
  }

  .final-cta__inner {
    width: min(calc(100% - 28px), var(--page));
  }

  .final-cta__shade {
    background: rgb(34 32 29 / 90%);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--page));
  }

  .site-footer__info,
  .site-footer__photo {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__info {
    grid-template-columns: 1fr;
  }

  .site-footer__photo {
    width: min(72%, 260px);
    height: 180px;
  }

  .copyright {
    width: min(calc(100% - 32px), var(--page));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reading-step] {
    opacity: var(--reading-rest-opacity, 1) !important;
    translate: 0 0 !important;
  }
}
