:root {
  --ink: #25313a;
  --ink-soft: #53606a;
  --paper: #fffaf1;
  --ivory: #f8f1e6;
  --linen: #efe3d2;
  --sage: #71846f;
  --sage-dark: #3f5f55;
  --rose: #bf7f7d;
  --plum: #624457;
  --gold: #b68a45;
  --white: #ffffff;
  --line: rgba(37, 49, 58, 0.14);
  --shadow: 0 22px 60px rgba(36, 31, 25, 0.16);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 250, 241, 0.88), rgba(255, 250, 241, 0.88)),
    repeating-linear-gradient(90deg, rgba(37, 49, 58, 0.03) 0, rgba(37, 49, 58, 0.03) 1px, transparent 1px, transparent 7px);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(37, 49, 58, 0.08);
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--sage-dark);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-family: "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub {
  margin-top: -2px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 14px;
  white-space: nowrap;
}

.header-nav a {
  transition: color 160ms ease;
}

.header-nav a:hover {
  color: var(--sage-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-cta {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(37, 49, 58, 0.16);
  font-size: 14px;
}

.header-cta svg,
.button svg,
.floating-consult svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta:hover,
.button:hover,
.floating-consult:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(720px, 86svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.78) 34%, rgba(255, 250, 241, 0.2) 64%),
    linear-gradient(0deg, rgba(37, 49, 58, 0.16), rgba(37, 49, 58, 0.03) 45%, rgba(255, 250, 241, 0.18));
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.eyebrow {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage-dark);
}

.hero h1 {
  max-width: 840px;
  margin-top: 16px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

.hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: #43515a;
  font-size: clamp(16px, 2vw, 18px);
}

.hero-lead a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button.primary {
  color: var(--paper);
  background: var(--sage-dark);
  box-shadow: 0 18px 34px rgba(63, 95, 85, 0.24);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(37, 49, 58, 0.18);
}

.button.story-link {
  color: var(--sage-dark);
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(63, 95, 85, 0.34);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.button.outline-light {
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.44);
}

.intro {
  border-top: 1px solid rgba(37, 49, 58, 0.1);
  border-bottom: 1px solid rgba(37, 49, 58, 0.08);
  background: var(--white);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(42px, 6vw, 78px) 0;
}

.intro h2,
.section-heading h2,
.faq-copy h2,
.contact h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.intro h2 {
  margin-top: 10px;
  font-size: clamp(25px, 3.2vw, 38px);
}

.intro p:last-child {
  color: var(--ink-soft);
  font-size: 16px;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.charm {
  background:
    linear-gradient(180deg, rgba(113, 132, 111, 0.1), rgba(255, 250, 241, 0)),
    var(--paper);
}

.section-heading {
  max-width: 670px;
  margin-bottom: clamp(30px, 5vw, 50px);
}

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

.section-heading h2,
.faq-copy h2,
.contact h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p:not(.eyebrow),
.faq-copy p:not(.eyebrow),
.contact p {
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.menu-card,
.sample-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(37, 49, 58, 0.07);
}

.feature-card {
  padding: 28px;
}

.icon-ring,
.menu-icon {
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  border-radius: 50%;
  background: rgba(113, 132, 111, 0.13);
}

.icon-ring {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.icon-ring svg,
.menu-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3,
.menu-card h3,
.flow-list h3,
.sample-item h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 21px;
  line-height: 1.45;
}

.feature-card p,
.menu-card p,
.sample-item p,
.flow-list p,
.faq-list p {
  color: var(--ink-soft);
}

.feature-card p {
  margin-top: 12px;
}

.menu {
  background: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 26px;
}

.menu-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
}

.menu-label,
.sample-tag {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-card h3 {
  margin-top: 6px;
}

.menu-card > p:not(.menu-label) {
  margin-top: 14px;
}

.menu-card ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  list-style: none;
}

.menu-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.menu-card li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.score-scope {
  margin-top: clamp(44px, 7vw, 76px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(63, 95, 85, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(113, 132, 111, 0.1), rgba(239, 227, 210, 0.26)),
    var(--paper);
}

.score-scope-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.score-scope-heading h3 {
  margin-top: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.35;
}

.score-scope-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--ink-soft);
}

.score-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.score-scope-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(37, 49, 58, 0.06);
}

.score-scope-card.consultation {
  border-top-color: var(--rose);
  background: rgba(255, 250, 241, 0.88);
}

.scope-label {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}

.consultation .scope-label {
  color: var(--plum);
}

.score-scope-card h4,
.scope-consult h4 {
  margin: 6px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 22px;
  line-height: 1.45;
}

.score-scope-card > p:not(.scope-label) {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 15px;
}

.score-scope-card ul {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.score-scope-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15px;
}

.score-scope-card li::before {
  position: absolute;
  top: 0.78em;
  left: 1px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.score-scope-card .scope-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.scope-consult {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--sage-dark);
}

.scope-consult p {
  color: rgba(255, 250, 241, 0.86);
  font-size: 15px;
}

.flow {
  background:
    linear-gradient(120deg, rgba(98, 68, 87, 0.08), rgba(113, 132, 111, 0.06)),
    var(--ivory);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
  box-shadow: var(--shadow);
}

.flow-list li {
  min-height: 280px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.78);
}

.flow-number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.flow-list p {
  margin-top: 12px;
  font-size: 15px;
}

.samples {
  background: var(--paper);
}

.sample-score-heading {
  max-width: 820px;
}

.sample-score-heading > p:not(.eyebrow) {
  margin-top: 18px;
  line-height: 1.9;
}

.sample-score-notes {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid rgba(182, 138, 69, 0.42);
}

.sample-score-notes p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.sample-item {
  padding: clamp(20px, 3vw, 28px);
}

.sample-item.featured {
  border-color: rgba(63, 95, 85, 0.26);
}

.sample-paper {
  position: relative;
  display: grid;
  gap: 10px;
  height: 210px;
  margin-bottom: 22px;
  padding: 30px 24px;
  overflow: hidden;
  border: 1px solid rgba(182, 138, 69, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(239, 227, 210, 0.64)),
    var(--white);
}

.sample-preparing {
  place-items: center;
  color: var(--ink-soft);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.14em;
}

.sample-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 49, 58, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(37, 49, 58, 0.08);
}

.sample-item h3 {
  margin-top: 0;
  font-size: 23px;
}

.sample-item p:last-child {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.85;
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 7vw, 76px);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 106px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 18px 54px 18px 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: translateY(-66%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-36%) rotate(225deg);
}

.faq-list p {
  padding: 0 22px 22px;
}

.contact {
  padding: clamp(70px, 9vw, 110px) 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(37, 49, 58, 0.94), rgba(63, 95, 85, 0.92)),
    var(--ink);
}

.contact-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  margin-right: auto;
  margin-left: auto;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 250, 241, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.contact p.contact-privacy-note {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.floating-consult {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--plum);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(37, 49, 58, 0.24);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: rgba(255, 250, 241, 0.72);
  background: #20282e;
  font-size: 13px;
}

.parent-site-link {
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 241, 0.4);
  text-underline-offset: 0.3em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.parent-site-link:hover,
.parent-site-link:focus-visible {
  color: var(--paper);
  text-decoration-color: currentColor;
  outline: none;
}

.story-page {
  background:
    linear-gradient(180deg, rgba(113, 132, 111, 0.08), transparent 420px),
    var(--paper);
}

.story-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 11vw, 144px) 18px clamp(64px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.story-hero::before,
.story-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(182, 138, 69, 0.2);
  border-radius: 50%;
}

.story-hero::before {
  top: -170px;
  left: -110px;
  width: 340px;
  height: 340px;
}

.story-hero::after {
  right: -80px;
  bottom: -150px;
  width: 280px;
  height: 280px;
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: 0 auto;
}

.story-hero h1 {
  margin-top: 14px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.25;
}

.story-intro {
  margin-top: 24px;
  color: var(--ink-soft);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 2;
}

.story-article {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.story-content {
  position: relative;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(182, 138, 69, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(36, 31, 25, 0.09);
}

.story-content::before {
  display: block;
  width: 44px;
  height: 1px;
  margin: 0 auto clamp(30px, 5vw, 48px);
  content: "";
  background: var(--gold);
}

.story-content > p {
  color: #3f4c55;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 2.15;
}

.story-content > p + p,
.story-content blockquote + p,
.story-content p + blockquote {
  margin-top: 1.9em;
}

.story-content blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 26px clamp(18px, 5vw, 42px);
  border-top: 1px solid rgba(182, 138, 69, 0.32);
  border-bottom: 1px solid rgba(182, 138, 69, 0.32);
  color: var(--sage-dark);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.story-date {
  color: var(--ink-soft) !important;
  font-size: 15px !important;
  text-align: right;
}

.ai-article {
  width: min(980px, calc(100% - 36px));
}

.ai-content {
  padding-right: clamp(28px, 7vw, 84px);
  padding-left: clamp(28px, 7vw, 84px);
}

.story-divider {
  width: 72px;
  height: 1px;
  margin: clamp(42px, 7vw, 68px) auto;
  border: 0;
  background: rgba(182, 138, 69, 0.38);
}

.inline-story-link {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(63, 95, 85, 0.34);
  text-underline-offset: 0.3em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.inline-story-link:hover,
.inline-story-link:focus-visible {
  color: var(--plum);
  text-decoration-color: currentColor;
  outline: none;
}

.ai-example {
  margin-top: clamp(48px, 8vw, 78px);
}

.ai-example-heading {
  margin-bottom: 26px;
  text-align: center;
}

.ai-example-heading h2 {
  margin-top: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.4;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.comparison-card {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 138, 69, 0.24);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(36, 31, 25, 0.08);
}

.comparison-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2308 / 1606;
  overflow: hidden;
  background: #e7e7e5;
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.comparison-card a:hover img,
.comparison-card a:focus-visible img {
  transform: scale(1.015);
}

.comparison-card a:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: -2px;
}

.comparison-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.comparison-card figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-content .comparison-caption {
  margin-top: 24px;
  color: var(--ink-soft);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

.ai-content .comparison-note {
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.story-content blockquote.closing-quote {
  color: var(--plum);
}

.ai-consult-note {
  margin-top: clamp(42px, 7vw, 66px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(63, 95, 85, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(113, 132, 111, 0.12), rgba(255, 250, 241, 0.78)),
    var(--paper);
  text-align: center;
}

.ai-consult-note p {
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 700;
  line-height: 1.9;
}

.ai-consult-note a {
  display: inline-block;
  margin-top: 14px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(63, 95, 85, 0.34);
  text-underline-offset: 0.32em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.ai-consult-note a:hover,
.ai-consult-note a:focus-visible {
  color: var(--plum);
  text-decoration-color: currentColor;
  outline: none;
}

.ai-consult-note .ai-consult-privacy-note {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

.story-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.text-back-link {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: rgba(83, 96, 106, 0.36);
  text-underline-offset: 0.32em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-back-link:hover,
.text-back-link:focus-visible {
  color: var(--sage-dark);
  text-decoration-color: currentColor;
  outline: none;
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.95) 0%, rgba(255, 250, 241, 0.82) 48%, rgba(255, 250, 241, 0.26) 100%),
      linear-gradient(0deg, rgba(37, 49, 58, 0.14), rgba(255, 250, 241, 0.12));
  }

  .intro-grid,
  .section-heading.split,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .menu-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-scope-grid,
  .scope-consult {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 420px;
  }

  .faq-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-sub {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.88) 58%, rgba(255, 250, 241, 0.5) 100%),
      linear-gradient(0deg, rgba(255, 250, 241, 0.22), rgba(255, 250, 241, 0));
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .story-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .story-content {
    padding: 32px 22px 38px;
  }

  .story-content > p {
    line-height: 2;
  }

  .story-content br {
    display: none;
  }

  .story-content blockquote {
    padding: 22px 12px;
  }

  .ai-article {
    width: min(100% - 28px, 980px);
  }

  .ai-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ai-content blockquote br {
    display: initial;
  }

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

  .comparison-card figcaption {
    padding-right: 14px;
    padding-left: 14px;
  }

  .ai-content .comparison-caption {
    font-size: 14px;
  }

  .story-actions .button {
    width: min(100%, 320px);
  }

  .menu-grid,
  .flow-list,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .menu-card,
  .score-scope-card,
  .flow-list li,
  .sample-item {
    padding: 22px;
  }

  .score-scope {
    padding: 22px;
  }

  .scope-consult {
    gap: 10px;
    padding: 22px;
  }

  .menu-card {
    min-height: 0;
  }

  .flow-list li {
    min-height: 0;
  }

  .sample-paper {
    height: 180px;
  }

  .sample-image {
    height: 180px;
  }

  .floating-consult {
    right: 14px;
    bottom: 14px;
    width: 48px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .floating-consult svg {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    display: block;
    padding-bottom: 84px;
  }

  .site-footer p + p {
    margin-top: 6px;
  }

  .story-page .site-footer {
    padding-bottom: 28px;
  }
}
