:root {
  --ink: #171717;
  --muted: #5d6066;
  --line: #e8e8e8;
  --paper: #eef8fb;
  --paper-deep: #d7eef5;
  --white: #ffffff;
  --red: #be1a31;
  --green: #18ae96;
  --yellow: #f7bf3b;
  --aqua: #16b5d5;
  --blue: #1264b5;
  --orange: #ff8a3d;
  --pink: #ec5f99;
  --purple: #9a7bf0;
  --navy: #10284f;
  --charcoal: #202124;
  --soft-sky: #e5f8ff;
  --soft-coral: #ffe2dd;
  --soft-sun: #fff1a8;
  --soft-mint: #e5fbf5;
  --soft-blue: #e8f0ff;
  --shadow: 0 20px 48px rgba(16, 40, 79, 0.14);
  --shadow-tight: 0 10px 0 rgba(16, 40, 79, 0.1);
  --radius: 0px;
  --content-max: 880px;
  --content-gutter: 48px;
  --content-gutter-mobile: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir, "Avenir Next", "Trebuchet MS", "Hiragino Maru Gothic ProN", Verdana, sans-serif;
  line-height: 1.55;
}

body::before {
  content: none;
}

body::after {
  content: "";
  position: fixed;
  right: -110px;
  top: 110px;
  z-index: -1;
  width: 280px;
  height: 280px;
  opacity: 0.2;
  pointer-events: none;
  background: var(--red);
  border-radius: 50%;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.52rem clamp(1rem, 3vw, 2rem);
  border-bottom: 5px solid var(--red);
  background: var(--white);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 44px;
  place-items: center;
  color: transparent;
  background: url("./design/parts/SVG/logo.svg") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.header-options-page {
  max-width: 760px;
}

.header-option-list {
  display: grid;
  gap: 1rem;
}

.header-option-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 40, 79, 0.1);
}

.header-option-card > p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.4;
}

.header-option-card .header-option-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-mock {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 58px;
  padding: 0.55rem 0.75rem;
  overflow: hidden;
}

.header-mock-mark {
  flex: 0 0 auto;
}

.header-mock-copy {
  display: grid;
  min-width: 0;
}

.header-mock-copy strong {
  font-size: 1.08rem;
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.header-mock-wordmark {
  border-bottom: 5px solid var(--red);
  background: var(--white);
  color: var(--ink);
}

.header-mock-j {
  width: 34px;
  height: 34px;
  background:
    image-set(
      url("./design/parts/PNG/logo.png") 1x,
      url("./design/parts/PNG/logo@2x.png") 2x
    ) center / cover no-repeat;
}

.header-mock-mizuhiki {
  position: relative;
  border: 4px solid #f1d7dc;
  background: var(--white);
  color: var(--ink);
}

.header-mock-mizuhiki::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -0.95rem;
  width: 10.5rem;
  height: 4.6rem;
  opacity: 0.18;
  pointer-events: none;
  background: url("./design/parts/SVG/mizuhiki-red.svg") center / contain no-repeat;
}

.header-mock-knot {
  width: 44px;
  height: 26px;
  background: url("./design/parts/SVG/mizuhiki-red.svg") center / 220% auto no-repeat;
}

.header-mock-stamp {
  background: var(--ink);
  color: var(--white);
}

.header-mock-jfm {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: -0.04em;
  line-height: 1;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.top-nav a,
.button,
.category-chip {
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(6, 45, 83, 0.08);
}

.top-nav a {
  padding: 0.48rem 0.78rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  color: var(--navy);
  background: var(--soft-sun);
}

main {
  min-height: 72vh;
}

.page-shell {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.home-page {
  width: 100%;
}

.home-page > .section {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  display: block;
  gap: clamp(0.9rem, 2.4vw, 1.8rem);
  align-items: stretch;
  min-height: auto;
  padding: clamp(0.85rem, 2.4vw, 1.6rem);
  border: 0;
  border-radius: var(--radius);
  background: var(--aqua);
  box-shadow: 0 18px 48px rgba(6, 45, 83, 0.12);
  overflow: hidden;
}

.home-page > .hero {
  width: 100%;
  border-radius: 0;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -2.5rem;
  width: min(42vw, 420px);
  height: min(30vw, 300px);
  opacity: 0.5;
  pointer-events: none;
  background: url("./assets/japanese-motifs.png") center / cover no-repeat;
  mix-blend-mode: screen;
}

.poster-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  min-height: 520px;
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.65rem);
  background: var(--white);
  overflow: hidden;
  box-shadow: inset 0 -142px 0 var(--aqua);
}

.poster-meta {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.4rem);
  left: clamp(0.9rem, 2vw, 1.4rem);
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(120px, 190px);
  gap: 1rem;
  align-items: start;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.poster-meta span:first-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.poster-cover .eyebrow {
  position: relative;
  z-index: 2;
  margin-top: clamp(3.1rem, 5.6vw, 4.25rem);
  color: var(--red);
}

.poster-cover h1 {
  position: relative;
  z-index: 3;
  max-width: 640px;
  font-size: clamp(3rem, 5.65vw, 5.35rem);
  line-height: 0.9;
}

.poster-cover h1 span {
  display: block;
  max-width: 530px;
}

.poster-cover h1 strong {
  display: inline-block;
  margin-top: 0.16em;
  padding: 0.06em 0.13em 0.1em;
  color: var(--white);
  background: var(--red);
  line-height: 0.88;
  white-space: nowrap;
}

.poster-cover .lead {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin-top: 0.85rem;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 700;
}

.hero-helper {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.25vw, 1rem);
  font-weight: 850;
}

.poster-wordmark {
  position: absolute;
  left: -0.08em;
  bottom: 0.2rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(5.8rem, 13.2vw, 11.5rem);
  font-weight: 1000;
  line-height: 0.7;
  letter-spacing: 0;
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Futura, "Avenir Next Condensed", Avenir, "Trebuchet MS", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 640px;
  margin: 1rem 0 0;
  color: #3d4148;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.poster-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.8rem;
  align-items: end;
  width: min(680px, 100%);
  min-height: 118px;
  margin-top: 1.15rem;
  padding: 0.7rem 1rem 0.9rem;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  overflow: hidden;
}

.poster-banner::before {
  content: "";
  position: absolute;
  inset: -40px -20px -30px 35%;
  opacity: 0.42;
  background: url("./assets/japanese-motifs.png") center / cover no-repeat;
  mix-blend-mode: screen;
}

.poster-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 170px;
  height: 72px;
  background: var(--white);
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.poster-year {
  position: relative;
  z-index: 1;
  align-self: start;
  writing-mode: vertical-rl;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.poster-word {
  position: relative;
  z-index: 1;
  align-self: center;
  font-size: clamp(3.6rem, 10vw, 7.4rem);
  font-weight: 1000;
  line-height: 0.72;
  letter-spacing: 0;
}

.poster-banner strong {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: start;
  padding: 0.2rem 0.55rem;
  color: var(--ink);
  background: var(--yellow);
  font-size: clamp(0.95rem, 2vw, 1.45rem);
  line-height: 1;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  max-width: 760px;
  margin-top: 1.15rem;
}

.hero-proof::before {
  content: "Each guide includes:";
  flex-basis: 100%;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-proof span + span::before {
  content: "/";
  margin-right: 0.8rem;
  color: var(--red);
}

.poster-cover .hero-proof {
  position: relative;
  z-index: 3;
  max-width: 560px;
  margin: 0.85rem 0 0;
}

.poster-cover .hero-proof span {
  color: var(--navy);
  background: transparent;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.poster-cover .hero-actions {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 4;
  margin: 0.95rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 0 rgba(16, 40, 79, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 0 rgba(16, 40, 79, 0.12);
}

.button.primary {
  border-color: var(--navy);
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--navy);
  background: var(--soft-sun);
}

.choice-panel {
  position: relative;
  padding: 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow:
    inset 0 50px 0 var(--red),
    0 18px 36px rgba(6, 45, 83, 0.13);
  overflow: hidden;
  align-self: center;
}

.choice-section {
  padding-top: clamp(1.25rem, 3vw, 2.2rem);
}

.choice-panel::before {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 0.82rem;
  width: 16px;
  height: 16px;
  opacity: 0.85;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 22px 0 0 var(--white);
}

.choice-panel::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 190px;
  height: 150px;
  opacity: 0.26;
  pointer-events: none;
  background: url("./assets/japanese-motifs.png") center / cover no-repeat;
  mix-blend-mode: screen;
}

.panel-kicker {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.22rem;
}

.panel-note {
  margin: 1.45rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.choice-grid,
.need-grid {
  display: grid;
  gap: 0.85rem;
}

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

.need-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-button,
.need-card {
  position: relative;
  display: grid;
  padding: 1rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft-accent, var(--soft-sky));
  box-shadow: 0 10px 22px rgba(6, 45, 83, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.choice-button {
  gap: 0.15rem;
  min-height: 88px;
  align-content: center;
  padding-right: 2rem;
  box-shadow:
    inset 5px 0 0 var(--accent, var(--red)),
    0 10px 22px rgba(6, 45, 83, 0.08);
}

.choice-button span,
.need-card strong {
  font-weight: 900;
}

.choice-button small,
.need-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.card-pict,
.category-card-icon {
  display: none;
}

.need-card {
  gap: 0.35rem;
  min-height: 102px;
  padding: 1.15rem 2.25rem 1.15rem 1.15rem;
  box-shadow:
    inset 0 5px 0 var(--accent, var(--green)),
    0 12px 24px rgba(6, 45, 83, 0.08);
}

.need-card span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-button::after,
.need-card::after,
.guide-card::after,
.category-card::after {
  content: ">";
  position: absolute;
  right: 0.8rem;
  top: 0.72rem;
  color: var(--accent, var(--red));
  font-weight: 900;
}

.choice-button::before,
.need-card::before {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: 0.55rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  background-color: var(--navy);
  background-image: url("./assets/japanese-motifs.png");
  background-size: 520px 390px;
  background-position: 40% 32%;
}

.choice-button:nth-child(2n)::before,
.need-card:nth-child(2n)::before {
  background-position: 73% 49%;
}

.choice-button:nth-child(3n)::before,
.need-card:nth-child(3n)::before {
  background-position: 24% 16%;
}

.choice-button:nth-child(4n)::before,
.need-card:nth-child(4n)::before {
  background-position: 88% 70%;
}

.choice-button:hover,
.need-card:hover,
.choice-button:focus-visible,
.need-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(6, 45, 83, 0.14);
}

.category-food {
  --accent: var(--red);
  --category-title: #d96071;
  --category-border: #f7c4cb;
  --soft-accent: var(--soft-coral);
}

.category-move {
  --accent: var(--aqua);
  --category-title: #53a7d3;
  --category-border: #b6d9eb;
  --soft-accent: var(--soft-sky);
}

.category-relax {
  --accent: var(--green);
  --category-title: #74a762;
  --category-border: #c4d9bd;
  --soft-accent: var(--soft-mint);
}

.category-culture {
  --accent: var(--yellow);
  --category-title: #ffb400;
  --category-border: #f5da9b;
  --soft-accent: var(--soft-sun);
}

.category-help {
  --accent: #835fcd;
  --category-title: #835fcd;
  --category-border: #d9ccfc;
  --soft-accent: #f0eaff;
}

.section {
  padding: clamp(1.6rem, 4vw, 3.4rem) 0;
  border-top: 1px solid rgba(23, 26, 33, 0.08);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

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

.category-card,
.guide-card,
.pdf-panel,
.article-card {
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 45, 83, 0.09);
}

.category-card,
.guide-card {
  position: relative;
  display: grid;
  gap: 0.95rem;
  min-height: 190px;
  padding: 1.3rem 2.55rem 1.3rem 1.3rem;
  box-shadow:
    inset 0 6px 0 var(--accent, var(--red)),
    inset 0 -54px 0 var(--soft-accent, var(--soft-sky)),
    0 12px 28px rgba(6, 45, 83, 0.09);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-card {
  box-shadow:
    inset 0 6px 0 var(--category-title, var(--accent, var(--red))),
    inset 0 -54px 0 var(--soft-accent, var(--soft-sky)),
    0 12px 28px rgba(6, 45, 83, 0.09);
}

.category-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 170px;
  height: 130px;
  opacity: 0.18;
  pointer-events: none;
  background: url("./assets/japanese-motifs.png") center / cover no-repeat;
  mix-blend-mode: screen;
}

.category-card:hover,
.guide-card:hover,
.category-card:focus-visible,
.guide-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(6, 45, 83, 0.14);
}

.category-chip {
  justify-self: start;
  padding: 0.32rem 0.68rem;
  color: var(--accent, var(--green));
  background: var(--soft-accent, var(--soft-sun));
  font-size: 0.78rem;
  font-weight: 800;
}

.category-card .category-chip {
  color: var(--white);
  background: var(--category-title, var(--accent, var(--red)));
}

.category-card h3 {
  color: var(--category-title, var(--accent, var(--red)));
}

.first-move-label {
  color: var(--accent, var(--red));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card p,
.category-card p {
  margin: 0;
  color: var(--muted);
}

.pdf-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 0;
  background: var(--soft-sky);
  box-shadow:
    inset 8px 0 0 var(--aqua),
    0 12px 28px rgba(6, 45, 83, 0.09);
}

.pdf-panel p {
  max-width: 680px;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.food-card-cta-section {
  padding-top: clamp(1.5rem, 3.4vw, 2.4rem);
}

.food-card-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(16, 40, 79, 0.15);
}

.food-card-cta-panel .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.food-card-cta-panel h2 {
  margin-top: 0.45rem;
  color: var(--white);
}

.food-card-cta-panel p {
  max-width: 620px;
  margin: 0.55rem 0 0;
  font-weight: 850;
}

.food-card-cta-panel .price-line {
  font-size: 1.05rem;
  font-weight: 1000;
}

.food-card-cta-panel .trust-line {
  opacity: 0.9;
  font-size: 0.9rem;
}

.food-card-cta-panel .button.primary {
  background: var(--white);
  color: var(--red);
}

.food-card-cta-panel .button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.86);
  color: var(--white);
}

.quick-phrases-section {
  padding-top: clamp(1.5rem, 3.4vw, 2.4rem);
}

.quick-phrase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-phrase-card {
  display: grid;
  gap: 0.45rem;
  min-height: 118px;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 45, 83, 0.09);
}

.quick-phrase-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.quick-phrase-card .jp {
  color: var(--red);
  font-weight: 900;
  line-height: 1.25;
}

.food-promo,
.food-card-intro,
.coming-soon-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 40, 79, 0.1);
}

.food-promo {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-left: 8px solid var(--red);
}

.food-promo h2,
.coming-soon-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.food-promo p,
.food-card-intro p,
.coming-soon-panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.food-section,
.move-section,
.relax-section,
.culture-section,
.help-section {
  padding: clamp(1.4rem, 4vw, 2.5rem) 0 0;
}

.food-section + .food-section,
.move-section + .move-section,
.relax-section + .relax-section,
.culture-section + .culture-section,
.help-section + .help-section,
.food-page .food-promo {
  margin-top: clamp(1.3rem, 3vw, 2rem);
}

.food-phrase-grid,
.move-phrase-grid,
.relax-phrase-grid,
.culture-phrase-grid,
.help-phrase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.food-phrase-card,
.move-phrase-card,
.relax-phrase-card,
.culture-phrase-card,
.help-phrase-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 40, 79, 0.09);
}

.food-phrase-card h3,
.move-phrase-card h3,
.relax-phrase-card h3,
.culture-phrase-card h3,
.help-phrase-card h3 {
  color: var(--red);
  font-size: 1rem;
}

.food-phrase-card .jp,
.move-phrase-card .jp,
.relax-phrase-card .jp,
.culture-phrase-card .jp,
.help-phrase-card .jp {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
}

.food-phrase-card p,
.move-phrase-card p,
.relax-phrase-card p,
.culture-phrase-card p,
.help-phrase-card p {
  margin: 0;
  color: var(--muted);
}

.move-help-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(1.3rem, 3vw, 2rem);
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: var(--soft-blue);
  box-shadow: inset 6px 0 0 var(--blue);
}

.move-help-note h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.move-help-note p:not(.eyebrow) {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.help-alert {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #fff4f1;
  box-shadow: inset 6px 0 0 var(--red);
}

.help-alert strong {
  color: var(--red);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.15;
}

.help-alert p {
  margin: 0;
  color: var(--ink);
}

.food-card-intro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--soft-sun);
}

.food-card-intro span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-weight: 900;
}

.food-card-intro strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.food-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.food-sample-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 40, 79, 0.09);
}

.food-sample-card:hover,
.food-sample-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 40, 79, 0.13);
}

.food-card-label {
  justify-self: start;
  padding: 0.24rem 0.6rem;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.food-sample-card h3 {
  color: var(--red);
  font-size: 1.25rem;
}

.show-card {
  display: grid;
  gap: 0.7rem;
  min-height: 210px;
  padding: 1.15rem;
  place-items: center;
  text-align: center;
  background: var(--soft-sun);
}

.show-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-card .jp {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.show-card-preview {
  min-height: 150px;
  padding: 1rem;
}

.show-card-preview .jp {
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
}

.food-show-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.food-show-steps > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 40, 79, 0.08);
}

.food-show-steps span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 0.85rem;
  font-weight: 1000;
  line-height: 1;
}

.food-show-steps strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.15;
}

.food-show-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.food-card-meaning,
.food-card-note {
  margin: 0;
}

.food-card-meaning {
  color: var(--ink);
  font-weight: 800;
}

.food-card-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.big-show-card {
  display: grid;
  gap: clamp(1rem, 4vw, 1.7rem);
  min-height: min(70vh, 680px);
  padding: clamp(1.25rem, 5vw, 3rem);
  place-items: center;
  text-align: center;
  background: var(--soft-sun);
  box-shadow:
    inset 0 10px 0 var(--red),
    0 18px 42px rgba(16, 40, 79, 0.12);
}

.big-show-card span {
  align-self: end;
  color: var(--red);
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 1000;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.big-show-card .jp {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1.25;
}

.food-detail-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.food-detail-info > div {
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 40, 79, 0.09);
}

.food-detail-safety {
  box-shadow:
    inset 6px 0 0 var(--red),
    0 12px 28px rgba(16, 40, 79, 0.09);
}

.food-detail-info p {
  margin: 0.45rem 0 0;
}

.food-detail-info .eyebrow {
  color: var(--red);
}

.disclaimer-box {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ink);
  background: #fff4f1;
  box-shadow: inset 6px 0 0 var(--red);
}

.disclaimer-box h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.disclaimer-box p {
  margin: 0;
}

.disclaimer-box .jp {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.food-guide-cta {
  background: var(--soft-sun);
  box-shadow:
    inset 6px 0 0 var(--red),
    0 10px 22px rgba(6, 45, 83, 0.06);
}

.food-guide-cta .eyebrow {
  margin: 0 0 0.55rem;
  color: var(--red);
}

.food-guide-cta h2 {
  color: var(--red);
}

.food-guide-cta p:not(.eyebrow) {
  max-width: 760px;
}

.related-guides-section {
  background: var(--white);
}

.related-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.related-guide-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-height: 150px;
  padding: 1rem 2rem 1rem 1rem;
  background: var(--soft-accent, var(--soft-sky));
  box-shadow:
    inset 5px 0 0 var(--accent, var(--red)),
    0 10px 22px rgba(6, 45, 83, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.related-guide-card::after {
  content: ">";
  position: absolute;
  right: 0.85rem;
  top: 0.8rem;
  color: var(--accent, var(--red));
  font-weight: 900;
}

.related-guide-card:hover,
.related-guide-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(6, 45, 83, 0.12);
}

.related-guide-card h3 {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.18;
}

.related-guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.related-empty {
  color: var(--muted);
}

.category-explorer {
  margin-top: clamp(1.6rem, 4vw, 2.7rem);
  padding-top: clamp(1.2rem, 3vw, 1.8rem);
  border-top: 1px solid rgba(23, 26, 33, 0.08);
}

.category-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.category-link-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-height: 132px;
  padding: 1rem 2rem 1rem 1rem;
  background: var(--soft-accent, var(--soft-sky));
  box-shadow:
    inset 5px 0 0 var(--accent, var(--red)),
    0 10px 22px rgba(6, 45, 83, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.category-link-card::after {
  content: ">";
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  color: var(--accent, var(--red));
  font-weight: 900;
}

.category-link-card:hover,
.category-link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(6, 45, 83, 0.12);
}

.category-link-card strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.category-link-card small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.coming-soon-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: var(--soft-sky);
}

.food-detail-upgrade {
  margin-top: 1rem;
  background: var(--white);
  box-shadow: inset 6px 0 0 var(--aqua);
}

.food-detail-upgrade h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.category-page-header,
.guide-page-header {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 2.2rem) 0 clamp(0.8rem, 2vw, 1.4rem);
}

.category-page-header h1,
.guide-page-header h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.crumbs a {
  color: var(--blue);
  font-weight: 800;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 1.5rem;
  align-items: start;
}

.article-card {
  overflow: hidden;
  border: 0;
  box-shadow: 0 18px 42px rgba(16, 40, 79, 0.11);
}

.article-section {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-bottom: 0;
}

.article-section + .article-section {
  box-shadow: inset 0 1px 0 rgba(210, 179, 110, 0.32);
}

.article-section:last-child {
  border-bottom: 0;
}

.article-section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
}

.article-section p {
  margin: 0.6rem 0 0;
}

.article-section ol,
.article-section ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.2rem;
}

.article-section li::marker {
  color: var(--blue);
  font-weight: 900;
}

.first-move-box {
  border-left: 0;
  background: var(--soft-coral);
  box-shadow:
    inset 0 6px 0 var(--red),
    0 10px 22px rgba(6, 45, 83, 0.06);
}

.first-move-box p {
  max-width: 820px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.28;
}

.phrase-grid,
.staff-grid {
  display: grid;
  gap: 1rem;
}

.phrase,
.staff-phrase {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft-sky);
}

.phrase {
  box-shadow:
    inset 5px 0 0 var(--green),
    0 10px 22px rgba(6, 45, 83, 0.06);
}

.staff-phrase {
  background: var(--soft-blue);
  box-shadow:
    inset 5px 0 0 var(--blue),
    0 10px 22px rgba(6, 45, 83, 0.06);
}

.jp {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1.25;
}

.romaji {
  color: var(--blue);
  font-weight: 800;
}

.meaning {
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 1rem;
}

.move-card {
  padding: 0.95rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft-sun);
  box-shadow: var(--shadow-tight);
}

.move-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--red);
  font-weight: 900;
}

.toc {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(6, 45, 83, 0.08);
}

.toc a,
.toc button {
  width: 100%;
  padding: 0.35rem 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}

.toc a:hover,
.toc button:hover,
.toc button:focus-visible {
  color: var(--ink);
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2rem);
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0.75rem;
  z-index: 8;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(420px, calc(100% - 1rem));
  padding: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(6, 45, 83, 0.2);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.bottom-nav a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.bottom-nav a:hover,
.bottom-nav a:focus-visible,
.bottom-nav a.is-active {
  color: var(--white);
  background: var(--navy);
}

.site-footer p {
  margin: 0.3rem 0 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero,
  .guide-layout,
  .pdf-panel,
  .food-card-cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .poster-cover {
    min-height: 520px;
  }

  .poster-wordmark {
    font-size: clamp(6.2rem, 23vw, 11rem);
  }

  .category-grid,
  .guide-grid,
  .need-grid,
  .quick-phrase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 5.5rem;
  }

  .page-shell {
    width: min(calc(100% - var(--content-gutter-mobile)), var(--content-max));
  }

  .site-header {
    position: static;
    padding: 0.75rem 0.75rem 0.35rem;
    border-bottom: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .top-nav {
    display: none;
  }

  .bottom-nav {
    display: grid;
  }

  .top-nav a {
    padding: 0.45rem 0.62rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
  }

  .hero {
    padding: 0.5rem;
    background: var(--aqua);
  }

  .poster-cover {
    min-height: auto;
    padding: 1rem;
  }

  .poster-meta {
    grid-template-columns: auto minmax(110px, 145px);
    gap: 0.72rem;
    font-size: 0.72rem;
  }

  .poster-cover .eyebrow {
    margin-top: 3.2rem;
  }

  .poster-cover h1 {
    max-width: 94%;
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .poster-cover .lead {
    max-width: 95%;
    margin-top: 0.9rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
  }

  .poster-wordmark {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 1rem 0 0.65rem;
    color: var(--red);
    font-size: clamp(4rem, 18vw, 6rem);
    line-height: 0.8;
    opacity: 1;
  }

  .poster-cover .hero-proof {
    position: static;
    max-width: 100%;
    margin-top: 0.8rem;
  }

  .hero-proof {
    gap: 0.4rem;
  }

  .hero-proof::before {
    font-size: 0.68rem;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 0;
    font-size: 0.78rem;
  }

  .hero-proof span + span::before {
    margin-right: 0.4rem;
  }

  .poster-cover .hero-actions {
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .poster-cover .hero-actions .button {
    flex: 1 1 140px;
    min-height: 42px;
    padding: 0.62rem 0.72rem;
    font-size: 0.9rem;
  }

  .category-grid,
  .guide-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .need-card {
    min-height: 68px;
    padding: 0.72rem 1.55rem 0.72rem 0.72rem;
  }

  .need-card strong {
    font-size: 0.92rem;
    line-height: 1.12;
  }

  .need-card span {
    font-size: 0.68rem;
  }

  .need-card::before {
    width: 30px;
    height: 30px;
    right: 0.42rem;
    bottom: 0.35rem;
  }

  .need-card::after {
    right: 0.52rem;
    top: 0.48rem;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .choice-button {
    min-height: 62px;
    padding: 0.62rem 1.45rem 0.62rem 0.62rem;
  }

  .choice-button span {
    font-size: 0.92rem;
    line-height: 1.12;
  }

  .choice-button small {
    font-size: 0.72rem;
  }

  .choice-button::before {
    width: 30px;
    height: 30px;
    right: 0.42rem;
    bottom: 0.35rem;
  }

  .choice-button::after {
    right: 0.52rem;
    top: 0.48rem;
  }

  .section-header {
    display: grid;
  }

  body {
    padding-bottom: 0;
    background: var(--white);
  }

  body::before {
    content: "";
    position: fixed;
    top: 13.6rem;
    right: -12.6rem;
    z-index: 0;
    width: 24.6rem;
    height: 24.6rem;
    border-radius: 50%;
    background: #d3bf63;
    opacity: 0.45;
    pointer-events: none;
  }

  body::after {
    content: none;
  }

  .site-header,
  main,
  .site-footer {
    position: relative;
    z-index: 1;
  }

  .site-header {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0.42rem 0.72rem;
    border-bottom: 4px solid var(--red);
    background: var(--white);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 32px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background: url("./design/parts/SVG/logo.svg") center / contain no-repeat;
    box-shadow: none;
    color: transparent;
    font-size: 0;
  }

  .brand-mark::after {
    content: none;
  }

  .brand strong {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 1000;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .brand small {
    display: none;
  }

  .bottom-nav {
    display: grid;
  }

  .page-shell {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .home-page > .section {
    width: 100%;
  }

  .hero {
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero::after {
    content: none;
  }

  .poster-cover {
    width: 100%;
    min-height: 0;
    padding: 0.65rem 0.9rem 1.15rem;
    background: transparent;
    box-shadow: none;
  }

  .poster-meta,
  .poster-cover .eyebrow,
  .poster-wordmark {
    display: none;
  }

  .poster-cover h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.25rem, 11.4vw, 2.75rem);
    line-height: 0.78;
    letter-spacing: -0.04em;
  }

  .poster-cover h1 span,
  .poster-cover h1 strong {
    display: block;
    max-width: none;
  }

  .poster-cover h1 strong {
    margin: 0.3em 0 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    line-height: 0.78;
  }

  .poster-cover h1::after {
    content: "";
    display: block;
    width: 120vw;
    height: clamp(104px, 29.2vw, 124px);
    margin: 0.46rem 0 0.12rem calc(-10vw - 0.9rem);
    background: url("./design/parts/SVG/mizuhiki-red.svg") center / 100% auto no-repeat;
    box-shadow: none;
  }

  .poster-cover .lead {
    max-width: 100%;
    margin-top: 1.35rem;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 17px;
  }

  .poster-cover .lead::after {
    content: none;
  }

  .hero-helper {
    max-width: 100%;
    margin-top: 0.5rem;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 17px;
  }

  .poster-cover .hero-proof {
    display: flex;
    gap: 0.18rem;
    margin-top: 0.02rem;
  }

  .hero-proof::before {
    content: none;
  }

  .hero-proof span {
    min-height: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 1000;
    line-height: 16px;
  }

  .hero-proof span + span::before {
    content: "/";
    margin: 0 0.18rem 0 0;
    color: #be1a31;
  }

  .poster-cover .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
    margin-top: 1.25rem;
    padding: 0 0.15rem;
  }

  .poster-cover .hero-actions .button {
    min-height: 42px;
    padding: 0.68rem 0.45rem;
    border: 2px solid var(--red);
    border-radius: 999px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 1000;
  }

  .poster-cover .hero-actions .button::after {
    content: ">";
    display: inline-block;
    margin-left: 0.75rem;
    transform: scaleX(0.5);
    transform-origin: left center;
  }

  .poster-cover .hero-actions .button.primary {
    color: var(--white);
    background: var(--red);
  }

  .poster-cover .hero-actions .button.secondary {
    color: var(--red);
    background: var(--white);
  }

  .choice-section {
    padding-top: 3.4rem;
  }

  .choice-panel {
    margin: 0 0.45rem;
    padding: 2.3rem 1rem 1rem;
    background: var(--red);
    box-shadow: none;
    overflow: visible;
  }

  .choice-panel::before {
    content: none;
  }

  .choice-panel::after {
    content: none;
  }

  .panel-kicker {
    position: absolute;
    left: 0;
    right: 0;
    top: -3.05rem;
    z-index: 1;
    padding-right: 4.75rem;
    color: var(--red);
    font-family: Futura, "Avenir Next Condensed", Avenir, sans-serif;
    font-size: 30px;
    font-weight: 1000;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .panel-kicker::after {
    content: "";
    position: absolute;
    right: 0.65rem;
    top: 50%;
    width: 3.35rem;
    height: 3.35rem;
    background: url("./design/parts/SVG/illust-daruma.svg") center / contain no-repeat;
    animation: jfm-daruma-goron 2.8s ease-in-out infinite;
    transform: translateY(-50%);
    transform-origin: 50% 72%;
    will-change: transform;
  }

  .panel-note {
    margin: -1.25rem 0 0.8rem;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .choice-button {
    min-height: 124px;
    padding: 0.52rem 0.35rem 0.38rem;
    border-radius: 6px;
    justify-items: center;
    align-content: start;
    gap: 0.1rem;
    background: var(--white);
    box-shadow: none;
  }

  .choice-button::before,
  .choice-button::after {
    content: none;
  }

  .choice-button span:first-child {
    color: var(--red);
    font-family: Futura, "Avenir Next Condensed", Avenir, "Trebuchet MS", sans-serif;
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-align: center;
  }

  .choice-button small {
    display: block;
    max-width: 8rem;
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
  }

  .card-pict {
    display: grid;
    width: 3.12rem;
    height: 3.12rem;
    place-items: center;
    margin-top: 0.35rem;
  }

  .card-pict-img {
    display: block;
    width: 150%;
    height: 150%;
    object-fit: contain;
  }

  .need-card .card-pict-img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .needs-section {
    padding: 3.4rem 0.45rem 0;
    border-top: 0;
  }

  .needs-section .section-header {
    margin-bottom: 0;
  }

  .needs-section .eyebrow {
    display: none;
  }

  .needs-section h2 {
    position: relative;
    display: block;
    max-width: 100%;
    padding-right: 5.25rem;
    color: #c0aa40;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .needs-section h2::after {
    content: "";
    position: absolute;
    right: 0.65rem;
    top: 50%;
    width: 4.15rem;
    height: 2.45rem;
    background: url("./design/parts/SVG/illust-cloud.svg") center / contain no-repeat;
    animation: jfm-cloud-fuwa 4.6s ease-in-out infinite;
    transform: translateY(-50%);
    will-change: transform;
  }

  .needs-section .section-header > p {
    margin: 0.35rem 0 0;
    padding: 0.85rem 0.62rem 0.8rem;
    color: var(--white);
    background: #c0aa40;
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
  }

  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0.35rem 1rem 1rem;
    background: #c0aa40;
  }

  .need-card {
    position: relative;
    display: block;
    min-height: 138px;
    padding: 0.45rem 0.35rem 0.45rem;
    border-radius: 6px;
    justify-items: center;
    align-content: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: none;
    overflow: hidden;
  }

  .need-card::before,
  .need-card::after {
    content: none;
  }

  .need-card strong {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 9.2rem;
    min-height: 34px;
    color: #c0aa40;
    font-family: Futura, "Avenir Next Condensed", Avenir, "Trebuchet MS", sans-serif;
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: -0.02em;
    line-height: 0.92;
    text-align: center;
    text-transform: none;
    font-variant-caps: normal;
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }

  .need-card strong span {
    display: block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: none;
    font-variant-caps: normal;
    white-space: nowrap;
  }

  .need-card .card-pict {
    position: absolute;
    left: 50%;
    top: 1.3rem;
    width: 7rem;
    height: 7rem;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .need-card.guide-restaurant-full .card-pict {
    top: 1.5rem;
  }

  .need-card > span:not(.card-pict) {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
    display: block;
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    text-transform: none;
  }

  .categories-section {
    padding: 3.4rem 0.95rem 0;
    border-top: 0;
  }

  .categories-section .section-header {
    margin-bottom: 1.15rem;
  }

  .categories-section .eyebrow {
    display: none;
  }

  .categories-section h2 {
    position: relative;
    display: block;
    max-width: 100%;
    padding-right: 5.25rem;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .categories-section h2::after {
    content: "";
    position: absolute;
    right: 0.65rem;
    top: 50%;
    width: 4rem;
    height: 3.45rem;
    background: url("./design/parts/SVG/illust-fish.svg") center / contain no-repeat;
    animation: jfm-fish-puru 1.35s ease-in-out infinite;
    transform: translateY(-50%);
    transform-origin: 50% 55%;
    will-change: transform;
  }

  .categories-section .section-header > p {
    margin: 0.5rem 0 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .category-card {
    min-height: 108px;
    padding: 0.58rem 0.78rem 0.58rem 7rem;
    border: 4px solid var(--category-border, var(--accent, var(--red)));
    border-radius: 6px;
    background: var(--white);
    box-shadow: none;
  }

  .category-card::before {
    content: none;
  }

  .category-card::after {
    content: none;
  }

  .category-card-icon {
    position: absolute;
    left: 0.72rem;
    top: 50%;
    display: grid;
    width: 5.65rem;
    height: 5.65rem;
    place-items: center;
    transform: translateY(-50%);
  }

  .category-card-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .category-card .category-chip {
    order: 3;
    justify-self: start;
    padding: 0.13rem 0.48rem;
    color: var(--white);
    background: var(--category-title, var(--accent, var(--red)));
    border-radius: 999px;
    box-shadow: none;
    font-size: 10px;
    font-weight: 1000;
  }

  .category-card h3 {
    color: var(--category-title, var(--accent, var(--red)));
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .category-card p {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.22;
  }

  .pdf-section {
    padding: 2.4rem 0.95rem 0;
    border-top: 0;
  }

  .food-card-cta-section {
    padding: 2.4rem 0.95rem 0;
  }

  .food-card-cta-panel {
    display: block;
    padding: 1.05rem;
    background: var(--red);
    box-shadow: none;
  }

  .food-card-cta-panel h2 {
    max-width: 18rem;
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .food-card-cta-panel p {
    font-size: 14px;
    line-height: 16px;
  }

  .food-card-cta-panel .price-line {
    font-size: 15px;
  }

  .food-card-cta-panel .section-actions {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .food-card-cta-panel .button {
    width: calc(100% - 2rem);
    min-height: 50px;
    justify-self: center;
    padding: 0.82rem 1.7rem;
    box-shadow: none;
    font-size: 16px;
    font-weight: 1000;
    line-height: 1;
  }

  .pdf-panel {
    display: block;
    padding: 0;
    background: var(--white);
    box-shadow: none;
  }

  .pdf-panel h2 {
    max-width: 16rem;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .pdf-panel p {
    max-width: 19rem;
    margin-top: 0.85rem;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
  }

  .pdf-panel .button {
    width: 100%;
    min-height: 44px;
    margin-top: 1rem;
    border-radius: 999px;
    color: transparent;
    background:
      image-set(
        url("./design/parts/PNG/pdf-btn.png") 1x,
        url("./design/parts/PNG/pdf-btn@2x.png") 2x
      ) center / contain no-repeat;
    box-shadow: none;
    font-size: 0.72rem;
  }

  #trip-tools .pdf-panel .section-actions {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  #trip-tools .pdf-panel .button {
    width: calc(100% - 2rem);
    min-height: 50px;
    justify-self: center;
    padding: 0.82rem 1.7rem;
    color: var(--white);
    background: var(--red);
    box-shadow: none;
    font-size: 16px;
    font-weight: 1000;
    line-height: 1;
  }

  #trip-tools .pdf-panel .button.secondary {
    color: var(--red);
    background: var(--white);
    border: 2px solid var(--red);
  }

  .quick-phrases-section {
    padding: 2.4rem 0.95rem 0;
  }

  .quick-phrases-section .section-header {
    margin-bottom: 1rem;
  }

  .quick-phrases-section .eyebrow {
    display: none;
  }

  .quick-phrases-section h2 {
    color: var(--ink);
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .quick-phrases-section .section-header > p {
    margin: 0.5rem 0 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
  }

  .quick-phrase-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quick-phrase-card {
    min-height: 0;
    padding: 0.85rem;
    box-shadow: none;
    border: 3px solid var(--line);
    border-radius: 6px;
  }

  .site-footer {
    display: block;
    margin-top: 1.9rem;
    padding: 1.1rem 0.85rem 1.35rem;
    color: var(--white);
    background: #d30f35;
  }

  .site-footer strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .site-footer p {
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
  }
}

@media (min-width: 480px) and (max-width: 620px) {
  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }

  .bottom-nav {
    bottom: max(0.6rem, env(safe-area-inset-bottom));
  }

  .food-page,
  .move-page,
  .relax-page,
  .culture-page,
  .help-page,
  .food-card-page,
  .food-detail-page,
  .guide-page,
  .not-found {
    padding: 0 0 2rem;
  }

  .category-page-header,
  .guide-page-header {
    gap: 0.65rem;
    padding: 1.35rem 0 1.05rem;
  }

  .category-page-header h1,
  .guide-page-header h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .category-page-header .lead,
  .guide-page-header .lead {
    max-width: 100%;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.42;
  }

  .crumbs {
    gap: 0.24rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .food-page .section-header,
  .move-page .section-header,
  .relax-page .section-header,
  .culture-page .section-header,
  .help-page .section-header,
  .food-card-page .section-header,
  .food-detail-page .section-header,
  .guide-page .section-header {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .food-page .section-header h2,
  .move-page .section-header h2,
  .relax-page .section-header h2,
  .culture-page .section-header h2,
  .help-page .section-header h2,
  .food-card-page .section-header h2,
  .food-detail-page .section-header h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .food-page .section-header > p,
  .move-page .section-header > p,
  .relax-page .section-header > p,
  .culture-page .section-header > p,
  .help-page .section-header > p,
  .food-card-page .section-header > p,
  .food-detail-page .section-header > p {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.36;
  }

  .food-section,
  .move-section,
  .relax-section,
  .culture-section,
  .help-section {
    padding-top: 1.35rem;
  }

  .food-page .guide-grid,
  .move-page .guide-grid,
  .relax-page .guide-grid,
  .culture-page .guide-grid,
  .help-page .guide-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .food-page .guide-card,
  .move-page .guide-card,
  .relax-page .guide-card,
  .culture-page .guide-card,
  .help-page .guide-card {
    min-height: 126px;
    gap: 0.55rem;
    padding: 0.92rem 2.15rem 0.92rem 0.95rem;
    box-shadow:
      inset 5px 0 0 var(--accent, var(--red)),
      0 10px 22px rgba(6, 45, 83, 0.08);
  }

  .food-page .guide-card::before,
  .move-page .guide-card::before,
  .relax-page .guide-card::before,
  .culture-page .guide-card::before,
  .help-page .guide-card::before {
    content: none;
  }

  .food-page .guide-card h3,
  .move-page .guide-card h3,
  .relax-page .guide-card h3,
  .culture-page .guide-card h3,
  .help-page .guide-card h3 {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .food-page .guide-card p,
  .move-page .guide-card p,
  .relax-page .guide-card p,
  .culture-page .guide-card p,
  .help-page .guide-card p {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .food-page .guide-card .category-chip,
  .move-page .guide-card .category-chip,
  .relax-page .guide-card .category-chip,
  .culture-page .guide-card .category-chip,
  .help-page .guide-card .category-chip {
    padding: 0.18rem 0.5rem;
    font-size: 0.64rem;
  }

  .food-phrase-card,
  .move-phrase-card,
  .relax-phrase-card,
  .culture-phrase-card,
  .help-phrase-card,
  .food-sample-card,
  .food-detail-info > div,
  .disclaimer-box,
  .coming-soon-panel,
  .move-help-note,
  .help-alert {
    box-shadow: 0 10px 22px rgba(6, 45, 83, 0.08);
  }

  .guide-page .guide-layout {
    display: block;
  }

  .guide-page .side-panel {
    display: none;
  }

  .guide-page .article-card {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .guide-page .article-section {
    margin-top: 0.75rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(6, 45, 83, 0.08);
  }

  .guide-page .article-section + .article-section {
    box-shadow: 0 10px 22px rgba(6, 45, 83, 0.08);
  }

  .guide-page .article-section h2 {
    margin-bottom: 0.62rem;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  .guide-page .article-section p,
  .guide-page .article-section li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .guide-page .first-move-box {
    background: #fff4f1;
    box-shadow:
      inset 5px 0 0 var(--red),
      0 10px 22px rgba(6, 45, 83, 0.08);
  }

  .guide-page .first-move-box p {
    font-size: 1.08rem;
    line-height: 1.32;
  }

  .guide-page .phrase,
  .guide-page .staff-phrase {
    padding: 0.9rem;
  }

  .guide-page .jp {
    font-size: clamp(1.18rem, 5.8vw, 1.55rem);
  }

  .category-explorer {
    margin-top: 1.8rem;
    padding-top: 1.3rem;
  }

  .category-link-grid,
  .related-guide-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .category-link-card,
  .related-guide-card {
    min-height: 106px;
    padding: 0.85rem 1.9rem 0.85rem 0.9rem;
  }

  .site-footer {
    padding-bottom: calc(1.35rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  .food-promo,
  .food-card-intro,
  .coming-soon-panel {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    padding: 1rem;
  }

  .food-promo .section-actions {
    display: grid;
    gap: 0.6rem;
  }

  .food-card-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .food-phrase-grid,
  .move-phrase-grid,
  .relax-phrase-grid,
  .culture-phrase-grid,
  .help-phrase-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .food-phrase-card,
  .move-phrase-card,
  .relax-phrase-card,
  .culture-phrase-card,
  .help-phrase-card {
    padding: 0.85rem;
  }

  .move-help-note {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    padding: 1rem;
  }

  .food-sample-card {
    padding: 0.85rem;
  }

  .food-show-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0.2rem 0 0.75rem;
    padding: 0.65rem 0.75rem;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(16, 40, 79, 0.08);
  }

  .food-show-steps > div {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.65rem;
    row-gap: 0.12rem;
    padding: 0.45rem 0;
    background: transparent;
    box-shadow: none;
  }

  .food-show-steps > div + div {
    border-top: 1px solid var(--line);
  }

  .food-show-steps span {
    grid-row: 1 / span 2;
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.72rem;
  }

  .food-show-steps strong {
    font-size: 0.92rem;
  }

  .food-show-steps p {
    display: block;
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .big-show-card {
    min-height: 62vh;
    padding: 1.1rem;
  }

  .big-show-card .jp {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .food-detail-info {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .show-card {
    min-height: 190px;
    padding: 1rem;
  }

  .show-card-preview {
    min-height: 130px;
  }

  .coming-soon-panel .button {
    width: 100%;
  }
}

@keyframes jfm-daruma-goron {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(-7deg);
  }

  24% {
    transform: translateY(-51%) translateX(-3px) rotate(12deg);
  }

  48% {
    transform: translateY(-49%) translateX(3px) rotate(-13deg);
  }

  72% {
    transform: translateY(-51%) translateX(-1px) rotate(8deg);
  }
}

@keyframes jfm-cloud-fuwa {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  35% {
    transform: translateY(calc(-50% - 6px)) translateX(-4px);
  }

  70% {
    transform: translateY(calc(-50% - 2px)) translateX(4px);
  }
}

@keyframes jfm-fish-puru {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(0deg);
  }

  15%,
  45%,
  75% {
    transform: translateY(-50%) translateX(-1px) rotate(-3deg);
  }

  30%,
  60%,
  90% {
    transform: translateY(-50%) translateX(1px) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-kicker::after,
  .needs-section h2::after,
  .categories-section h2::after {
    animation: none !important;
  }
}

/* Practical TOP tone: keep the structure, reduce festival/poster decoration. */
body {
  background: #f7f5ef;
}

body::after {
  background: #d9eaf0;
  opacity: 0.26;
}

.site-header {
  border-bottom: 1px solid #ece8de;
}

.brand {
  gap: 0.55rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid #d8d2c5;
  border-radius: 12px;
  background: #fffdf8;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  display: block;
}

.brand-mark::before {
  left: 7px;
  top: 9px;
  width: 15px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 10px;
  background: var(--white);
}

.brand-mark::after {
  right: 7px;
  bottom: 8px;
  width: 9px;
  height: 2px;
  background: var(--red);
  transform: rotate(-32deg);
  transform-origin: right center;
}

.brand strong {
  font-size: 1.06rem;
  letter-spacing: -0.025em;
}

.brand small {
  color: #6f716f;
}

.home-page > .hero {
  background: #f1f8fa;
  box-shadow: none;
}

.poster-cover {
  min-height: 420px;
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 181, 213, 0.15) 0 88px, transparent 90px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 245, 239, 0.8));
  box-shadow: none;
}

.poster-cover h1 {
  max-width: 680px;
  line-height: 0.94;
}

.poster-cover h1 strong {
  color: var(--ink);
  background: transparent;
}

.poster-cover .lead,
.hero-helper {
  color: #3f4548;
}

.poster-wordmark {
  color: rgba(18, 100, 181, 0.06);
}

.choice-section,
.needs-section,
.categories-section,
.food-card-cta-section,
.quick-phrases-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.choice-panel {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(16, 40, 79, 0.08);
}

.panel-kicker {
  color: var(--ink);
  font-family: inherit;
  font-weight: 1000;
}

.panel-kicker::after,
.needs-section h2::after,
.categories-section h2::after {
  content: none;
}

.panel-note {
  color: #5e6466;
}

.choice-grid,
.need-grid {
  gap: 0.95rem;
}

.choice-button,
.need-card,
.quick-phrase-card {
  border: 1px solid #ece8de;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 40, 79, 0.06);
}

.choice-button {
  min-height: 128px;
  padding: 1rem;
  align-content: start;
}

.choice-button span:first-child,
.need-card strong {
  color: var(--ink);
  font-family: inherit;
  letter-spacing: -0.02em;
}

.choice-button small,
.need-card > span:not(.card-pict) {
  color: #606569;
}

.card-pict {
  opacity: 0.72;
}

.card-pict-img {
  width: 100%;
  height: 100%;
}

.needs-section h2,
.categories-section h2,
.quick-phrases-section h2 {
  color: var(--ink);
}

.needs-section .section-header > p,
.categories-section .section-header > p,
.quick-phrases-section .section-header > p {
  color: #5e6466;
  background: transparent;
}

.need-grid {
  padding: 0;
  background: transparent;
}

.need-card {
  min-height: 132px;
  padding: 1rem;
  overflow: visible;
}

.need-card .card-pict {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.55rem auto 0.45rem;
  transform: none;
}

.need-card.guide-restaurant-full .card-pict {
  top: auto;
}

.need-card > span:not(.card-pict) {
  position: static;
  display: block;
  text-align: center;
  text-transform: none;
}

.food-card-cta-panel {
  color: var(--ink);
  background: #fff8f5;
  border: 2px solid rgba(190, 26, 49, 0.18);
  border-left: 8px solid var(--red);
  box-shadow: 0 16px 36px rgba(16, 40, 79, 0.08);
}

.food-card-cta-panel .eyebrow {
  color: var(--red);
  background: rgba(190, 26, 49, 0.08);
}

.food-card-cta-panel h2,
.food-card-cta-panel p {
  color: inherit;
}

.food-card-cta-panel .trust-line {
  color: #62676b;
  opacity: 1;
}

.food-card-cta-panel .button.primary {
  color: var(--white);
  background: var(--red);
}

.food-card-cta-panel .button.secondary {
  color: var(--red);
  background: var(--white);
  border: 2px solid rgba(190, 26, 49, 0.28);
}

.category-card {
  border-color: #eee9df;
  box-shadow: 0 8px 20px rgba(16, 40, 79, 0.06);
}

.category-card .category-chip {
  background: rgba(16, 40, 79, 0.08);
  color: #3f4548;
}

.category-card p {
  color: #5e6466;
}

.site-footer {
  color: var(--ink);
  background: #efede6;
}

@media (max-width: 620px) {
  body {
    background: #f7f5ef;
  }

  body::before {
    content: none;
  }

  .site-header {
    min-height: 54px;
    border-bottom: 1px solid #ece8de;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    background: #fffdf8;
  }

  .brand strong {
    font-size: 0.98rem;
    letter-spacing: -0.03em;
  }

  .home-page > .section {
    width: calc(100% - 1.5rem);
  }

  .home-page > .hero {
    width: 100%;
    background: #f1f8fa;
  }

  .poster-cover {
    padding: 1.6rem 1.15rem 1.9rem;
    background:
      radial-gradient(circle at 90% 12%, rgba(22, 181, 213, 0.16) 0 62px, transparent 64px),
      #f8fbfa;
  }

  .poster-cover h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 0.94;
  }

  .poster-cover h1::after {
    content: none;
  }

  .poster-cover .lead {
    margin-top: 0.95rem;
    font-size: 15px;
    line-height: 20px;
  }

  .hero-helper {
    font-size: 13px;
    line-height: 18px;
  }

  .choice-section {
    padding-top: 1.35rem;
  }

  .choice-panel {
    margin: 0;
    padding: 1.05rem;
    background: #fffdf8;
    border: 1px solid #ece8de;
  }

  .panel-kicker {
    position: static;
    padding-right: 0;
    color: var(--ink);
    font-family: inherit;
    font-size: 28px;
    line-height: 1;
  }

  .panel-note {
    margin: 0.55rem 0 1rem;
    color: #5e6466;
    font-size: 13px;
    line-height: 18px;
  }

  .choice-grid {
    gap: 0.72rem;
  }

  .choice-button {
    min-height: 132px;
    padding: 0.85rem 0.65rem;
    gap: 0.28rem;
  }

  .choice-button span:first-child {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.12;
  }

  .choice-button small {
    max-width: 8.5rem;
    color: #606569;
    font-size: 11px;
    line-height: 1.25;
  }

  .card-pict {
    width: 2.1rem;
    height: 2.1rem;
    margin-top: 0.42rem;
  }

  .needs-section,
  .categories-section,
  .food-card-cta-section,
  .quick-phrases-section {
    padding-top: 2rem;
  }

  .needs-section {
    padding-right: 0;
    padding-left: 0;
  }

  .needs-section .section-header,
  .categories-section .section-header,
  .quick-phrases-section .section-header {
    margin-bottom: 0.95rem;
  }

  .needs-section h2,
  .categories-section h2,
  .quick-phrases-section h2 {
    padding-right: 0;
    font-size: 28px;
    line-height: 1;
  }

  .needs-section .section-header > p,
  .categories-section .section-header > p,
  .quick-phrases-section .section-header > p {
    margin-top: 0.55rem;
    padding: 0;
    color: #5e6466;
    font-size: 13px;
    line-height: 18px;
  }

  .need-grid {
    gap: 0.72rem;
    padding: 0;
  }

  .need-card {
    min-height: 142px;
    padding: 0.85rem 0.65rem;
  }

  .need-card strong {
    min-height: auto;
    color: var(--ink);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.08;
  }

  .need-card .card-pict {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0.55rem auto 0.5rem;
  }

  .need-card > span:not(.card-pict) {
    color: #606569;
    font-size: 11px;
    line-height: 1.22;
  }

  .food-card-cta-section,
  .categories-section,
  .quick-phrases-section {
    padding-right: 0;
    padding-left: 0;
  }

  .food-card-cta-panel {
    padding: 1rem;
    border-width: 1px;
    border-left-width: 5px;
    background: #fff8f5;
  }

  .food-card-cta-panel h2 {
    font-size: 28px;
  }

  .food-card-cta-panel p {
    color: var(--ink);
    font-size: 13px;
    line-height: 18px;
  }

  .food-card-cta-panel .button {
    width: 100%;
  }

  .category-grid {
    gap: 0.72rem;
  }

  .category-card {
    min-height: 108px;
    padding: 0.78rem 0.9rem 0.78rem 5.25rem;
    border-width: 1px;
    border-color: #ece8de;
    border-radius: 14px;
  }

  .category-card-icon {
    left: 0.9rem;
    width: 3.45rem;
    height: 3.45rem;
  }

  .category-card h3 {
    font-size: 19px;
  }

  .category-card p {
    font-size: 12px;
    line-height: 1.32;
  }

  .quick-phrase-card {
    border-width: 1px;
    border-color: #ece8de;
  }

  .site-footer {
    color: var(--ink);
    background: #efede6;
  }
}

/* TOP polish pass: spacing, readability, and a calmer travel-support tone. */
.home-page > .hero {
  position: relative;
  background: #f2f8f8;
}

.poster-cover {
  position: relative;
  min-height: 360px;
  padding-top: clamp(2.2rem, 5vw, 4rem);
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

.poster-cover::before {
  content: "";
  position: absolute;
  right: clamp(1rem, 9vw, 7rem);
  bottom: clamp(1rem, 4vw, 2.8rem);
  width: min(42vw, 420px);
  height: min(20vw, 180px);
  border: 2px solid rgba(18, 100, 181, 0.1);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 120px 0 0;
  transform: rotate(-4deg);
  pointer-events: none;
}

.poster-cover::after {
  content: "";
  position: absolute;
  right: clamp(1.5rem, 12vw, 9rem);
  bottom: clamp(2.6rem, 6vw, 4.4rem);
  width: min(28vw, 260px);
  height: 2px;
  background: rgba(190, 26, 49, 0.13);
  transform: rotate(-4deg);
  pointer-events: none;
}

.poster-cover h1,
.poster-cover .lead,
.hero-helper {
  max-width: 640px;
}

.poster-cover h1 {
  font-size: clamp(3.2rem, 6vw, 5.1rem);
}

.poster-cover .lead {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.45;
}

.hero-helper {
  margin-top: 0.6rem;
  line-height: 1.45;
}

.choice-section,
.needs-section {
  padding-top: clamp(1.6rem, 3.2vw, 2.4rem);
}

.categories-section,
.food-card-cta-section,
.quick-phrases-section {
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
}

.choice-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.panel-kicker,
.needs-section h2,
.categories-section h2,
.quick-phrases-section h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.04;
}

.panel-note,
.needs-section .section-header > p,
.categories-section .section-header > p,
.quick-phrases-section .section-header > p {
  max-width: 620px;
  margin-top: 0.55rem;
  line-height: 1.45;
}

.choice-grid,
.need-grid {
  gap: 1rem;
}

.choice-button,
.need-card {
  min-height: 142px;
  padding: 1.05rem;
  align-content: start;
  gap: 0.45rem;
}

.choice-button span:first-child,
.need-card strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.choice-button small,
.need-card > span:not(.card-pict) {
  max-width: 12rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.choice-button .card-pict,
.need-card .card-pict {
  width: 2.35rem;
  height: 2.35rem;
}

.food-card-cta-panel {
  gap: 1.6rem;
  padding: clamp(1.65rem, 3.4vw, 2.6rem);
  border-left-width: 6px;
}

.food-card-cta-panel h2 {
  max-width: 620px;
  margin-top: 0.55rem;
  line-height: 1.02;
}

.food-card-cta-panel p {
  line-height: 1.5;
}

.food-card-cta-panel .price-line {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  color: var(--red);
  background: rgba(190, 26, 49, 0.08);
  font-size: 1rem;
}

.food-card-cta-panel .trust-line {
  margin-top: 0.75rem;
}

.food-card-cta-panel .section-actions {
  align-items: center;
}

.category-card {
  gap: 0.65rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.category-card h3 {
  line-height: 1.08;
}

.category-card p {
  line-height: 1.45;
}

.quick-phrase-card {
  background: rgba(255, 255, 255, 0.72);
}

.quick-phrase-card strong {
  font-size: 0.95rem;
}

.quick-phrase-card .jp {
  color: #7f2633;
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .poster-cover {
    min-height: 0;
    padding: 1.45rem 1.15rem 1.55rem;
  }

  .poster-cover::before {
    right: -1.4rem;
    bottom: 1.1rem;
    width: 9rem;
    height: 4.8rem;
    border-width: 1px;
    border-radius: 0 80px 0 0;
    opacity: 0.9;
  }

  .poster-cover::after {
    right: 1.2rem;
    bottom: 2.2rem;
    width: 5.8rem;
  }

  .poster-cover h1 {
    max-width: 18rem;
    font-size: clamp(2.25rem, 10.2vw, 2.75rem);
  }

  .poster-cover .lead {
    max-width: 19rem;
    margin-top: 0.8rem;
    font-size: 14px;
    line-height: 19px;
  }

  .hero-helper {
    max-width: 18rem;
    margin-top: 0.45rem;
    font-size: 12px;
    line-height: 17px;
  }

  .choice-section {
    padding-top: 1.1rem;
  }

  .needs-section,
  .categories-section,
  .food-card-cta-section,
  .quick-phrases-section {
    padding-top: 1.8rem;
  }

  .choice-panel {
    padding: 1rem;
  }

  .panel-kicker,
  .needs-section h2,
  .categories-section h2,
  .quick-phrases-section h2 {
    font-size: 26px;
  }

  .panel-note,
  .needs-section .section-header > p,
  .categories-section .section-header > p,
  .quick-phrases-section .section-header > p {
    font-size: 13px;
    line-height: 18px;
  }

  .choice-grid,
  .need-grid {
    gap: 0.65rem;
  }

  .choice-button,
  .need-card {
    min-height: 134px;
    padding: 0.82rem 0.68rem;
  }

  .choice-button span:first-child,
  .need-card strong {
    font-size: 15px;
    line-height: 1.12;
  }

  .choice-button small,
  .need-card > span:not(.card-pict) {
    font-size: 10.5px;
    line-height: 1.28;
  }

  .choice-button .card-pict,
  .need-card .card-pict {
    width: 2rem;
    height: 2rem;
    margin-top: 0.42rem;
    margin-bottom: 0.28rem;
  }

  .food-card-cta-panel {
    padding: 1.15rem;
  }

  .food-card-cta-panel h2 {
    font-size: 27px;
  }

  .food-card-cta-panel .price-line {
    font-size: 14px;
  }

  .food-card-cta-panel .trust-line {
    font-size: 12px;
  }

  .category-card {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .category-card p {
    line-height: 1.4;
  }
}

/* TOP fine tuning: reduce empty hero space and improve card readability. */
.poster-cover {
  min-height: 330px;
  padding-top: clamp(1.8rem, 4.2vw, 3.2rem);
  padding-bottom: clamp(1.8rem, 4.2vw, 3.2rem);
}

.poster-cover::before {
  opacity: 0.7;
}

.poster-cover::after {
  opacity: 0.75;
}

.poster-cover h1 {
  font-size: clamp(3rem, 5.5vw, 4.7rem);
}

.poster-cover .lead {
  margin-top: 0.8rem;
}

.choice-section {
  padding-top: clamp(1.35rem, 2.8vw, 2rem);
}

.choice-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.panel-kicker {
  margin-bottom: 0;
}

.panel-note {
  margin-bottom: 1.05rem;
}

.choice-button,
.need-card {
  min-height: 136px;
  padding: 1rem 0.95rem 0.95rem;
}

.choice-button span:first-child,
.need-card strong {
  font-size: 1.02rem;
}

.choice-button small,
.need-card > span:not(.card-pict) {
  max-width: 13rem;
  font-size: 0.86rem;
  line-height: 1.36;
}

.choice-button .card-pict,
.need-card .card-pict {
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.48rem;
  margin-bottom: 0.35rem;
}

.food-card-cta-panel {
  padding: clamp(1.85rem, 3.8vw, 2.85rem);
  border-left-width: 5px;
}

.food-card-cta-panel h2 {
  margin-top: 0.65rem;
}

.food-card-cta-panel .price-line {
  margin-top: 1.1rem;
  padding: 0.42rem 0.78rem;
  background: rgba(190, 26, 49, 0.1);
  font-size: 1.04rem;
  line-height: 1;
}

.food-card-cta-panel .button.secondary {
  border-color: transparent;
  background: transparent;
}

.category-card {
  gap: 0.75rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.quick-phrase-grid {
  gap: 0.65rem;
}

.quick-phrase-card {
  min-height: auto;
  padding: 0.9rem 0;
  border: 0;
  border-top: 1px solid #e7e1d6;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-phrase-card:last-child {
  border-bottom: 1px solid #e7e1d6;
}

@media (max-width: 620px) {
  .poster-cover {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .poster-cover::before {
    right: -1.8rem;
    bottom: 0.8rem;
    width: 8.2rem;
    height: 4.3rem;
    opacity: 0.62;
  }

  .poster-cover::after {
    right: 1rem;
    bottom: 1.8rem;
    width: 5.2rem;
    opacity: 0.58;
  }

  .poster-cover h1 {
    font-size: clamp(2.2rem, 9.7vw, 2.6rem);
  }

  .poster-cover .lead {
    margin-top: 0.7rem;
  }

  .choice-section {
    padding-top: 1.2rem;
  }

  .choice-panel {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .panel-note {
    margin-bottom: 0.85rem;
  }

  .choice-button,
  .need-card {
    min-height: 136px;
    padding: 0.86rem 0.72rem 0.78rem;
  }

  .choice-button small,
  .need-card > span:not(.card-pict) {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .choice-button .card-pict,
  .need-card .card-pict {
    width: 2.08rem;
    height: 2.08rem;
    margin-top: 0.42rem;
    margin-bottom: 0.32rem;
  }

  .food-card-cta-panel {
    padding: 1.25rem;
  }

  .food-card-cta-panel .price-line {
    display: inline-flex;
    font-size: 14.5px;
  }

  .food-card-cta-panel .button.secondary {
    min-height: auto;
    padding-top: 0.45rem;
    padding-bottom: 0.2rem;
  }

  .category-card {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .quick-phrase-card {
    padding: 0.75rem 0;
  }
}

/* TOP card balance: stronger icons without turning cards into icon tiles. */
.choice-button,
.need-card {
  min-height: 144px;
  padding: 1rem 0.95rem 0.95rem;
  justify-items: center;
}

.choice-button span:first-child,
.need-card strong {
  min-height: auto;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.14;
  text-align: center;
}

.choice-button .card-pict,
.need-card .card-pict {
  width: 3rem;
  height: 3rem;
  margin: 0.55rem auto 0.42rem;
  opacity: 0.68;
}

.choice-button small,
.need-card > span:not(.card-pict) {
  max-width: 13.5rem;
  color: #555d61;
  font-size: 0.88rem;
  line-height: 1.34;
  text-align: center;
}

@media (max-width: 620px) {
  .choice-button,
  .need-card {
    min-height: 142px;
    padding: 0.82rem 0.7rem 0.76rem;
  }

  .choice-button span:first-child,
  .need-card strong {
    font-size: 15px;
    font-weight: 850;
    line-height: 1.12;
  }

  .choice-button .card-pict,
  .need-card .card-pict {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0.46rem auto 0.34rem;
    opacity: 0.66;
  }

  .choice-button small,
  .need-card > span:not(.card-pict) {
    font-size: 11.5px;
    line-height: 1.28;
  }
}

/* Clean TOP UI pass: practical travel support with a restrained, modern mark. */
body {
  background: #fbfaf7;
}

body::after {
  right: -150px;
  top: 88px;
  width: 320px;
  height: 320px;
  background: #dceff5;
  opacity: 0.18;
}

.site-header {
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid #e9e3d8;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  gap: 0.62rem;
}

.brand-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 5.25C11.55 5.25 4.75 11.45 4.75 19.1C4.75 26.75 11.55 32.95 20 32.95C22.17 32.95 24.25 32.54 26.08 31.8L31.3 35.25L30 29.72C33.2 27.2 35.25 23.4 35.25 19.1C35.25 11.45 28.45 5.25 20 5.25Z' stroke='%23172033' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.4 19.85H25.35M25.35 19.85L20.72 15.2M25.35 19.85L20.72 24.48' stroke='%23172033' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='31.4' cy='8.4' r='2.1' fill='%23BE1A31'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand strong {
  color: #171b24;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 0.05rem;
  color: #71757b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.top-nav a {
  color: #343942;
  background: transparent;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  color: #172033;
  background: #f2f7fa;
}

.home-page > .hero {
  padding: clamp(0.9rem, 2vw, 1.4rem) 0;
  background: #fbfaf7;
}

.hero::after {
  content: none;
}

.poster-cover {
  width: 100%;
  max-width: var(--content-max);
  min-height: 310px;
  padding: clamp(2rem, 4.4vw, 3.4rem);
  border: 1px solid #ebe5dc;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 22%, rgba(207, 233, 239, 0.9) 0 72px, transparent 74px),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.06);
}

.poster-meta,
.poster-cover .eyebrow,
.poster-wordmark {
  display: none;
}

.poster-cover::before {
  right: clamp(1rem, 7vw, 5rem);
  bottom: clamp(1.15rem, 4vw, 2.6rem);
  width: min(36vw, 350px);
  height: min(17vw, 150px);
  border-color: rgba(83, 167, 211, 0.18);
  opacity: 1;
}

.poster-cover::after {
  right: clamp(2rem, 10vw, 7rem);
  bottom: clamp(2.35rem, 5vw, 4rem);
  width: min(22vw, 210px);
  background: rgba(83, 167, 211, 0.2);
  opacity: 1;
}

.poster-cover h1 {
  max-width: 680px;
  color: #171b24;
  font-size: clamp(3rem, 5.1vw, 4.55rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.poster-cover .lead {
  max-width: 560px;
  margin-top: 1rem;
  color: #303844;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 850;
  line-height: 1.45;
}

.hero-helper {
  max-width: 560px;
  margin-top: 0.5rem;
  color: #5e6670;
  font-size: clamp(0.94rem, 1.25vw, 1rem);
  font-weight: 760;
  line-height: 1.5;
}

.home-page > .section {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
}

.home-page .eyebrow::before {
  content: none;
}

.choice-section,
.needs-section {
  padding-top: clamp(1.7rem, 3vw, 2.35rem);
}

.categories-section,
.food-card-cta-section,
.quick-phrases-section {
  padding-top: clamp(2.2rem, 4vw, 3.1rem);
}

.choice-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.panel-kicker,
.needs-section h2,
.categories-section h2,
.quick-phrases-section h2 {
  color: #171b24;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.panel-note,
.needs-section .section-header > p,
.categories-section .section-header > p,
.quick-phrases-section .section-header > p {
  max-width: 640px;
  margin-top: 0.5rem;
  color: #626972;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.5;
}

.choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.choice-grid,
.need-grid {
  gap: 1rem;
}

.choice-button,
.need-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  justify-items: center;
  min-height: 156px;
  padding: 1.12rem 1rem 1rem;
  border: 1px solid #e7e1d8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.07);
}

.choice-button::before,
.choice-button::after,
.need-card::before,
.need-card::after {
  content: none;
}

.choice-button:hover,
.choice-button:focus-visible,
.need-card:hover,
.need-card:focus-visible {
  transform: translateY(-2px);
  border-color: #d6d0c5;
  box-shadow: 0 15px 30px rgba(23, 32, 51, 0.1);
}

.choice-button span:first-child,
.need-card strong {
  color: #171b24;
  font-family: inherit;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-align: center;
}

.choice-button .card-pict,
.need-card .card-pict {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  margin: 0.58rem auto 0.46rem;
  opacity: 0.74;
}

.choice-button .card-pict-img,
.need-card .card-pict-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.choice-button small,
.need-card > span:not(.card-pict) {
  max-width: 13.75rem;
  color: #555e67;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
  text-align: center;
}

.food-card-cta-panel {
  gap: clamp(1.3rem, 3vw, 2.2rem);
  padding: clamp(1.6rem, 3.6vw, 2.45rem);
  color: #171b24;
  border: 1px solid #efc7cd;
  border-left: 6px solid var(--red);
  border-radius: 22px;
  background: #fff5f4;
  box-shadow: 0 18px 40px rgba(190, 26, 49, 0.08);
}

.food-card-cta-panel .eyebrow {
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.56rem;
  color: var(--red);
  background: #ffffff;
  border: 1px solid #f0c8ce;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
}

.food-card-cta-panel h2 {
  color: #171b24;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.food-card-cta-panel p {
  color: #303844;
  font-weight: 760;
  line-height: 1.52;
}

.food-card-cta-panel .price-line {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.42rem 0.76rem;
  color: var(--red);
  background: #ffffff;
  border: 1px solid #efc7cd;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.food-card-cta-panel .trust-line {
  margin-top: 0.75rem;
  color: #626972;
  font-size: 0.92rem;
  font-weight: 700;
}

.food-card-cta-panel .button.primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(190, 26, 49, 0.18);
}

.food-card-cta-panel .button.secondary {
  color: var(--red);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.categories-section .section-header,
.quick-phrases-section .section-header {
  margin-bottom: 1.05rem;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.category-card {
  min-height: 166px;
  gap: 0.58rem;
  padding: 1.1rem;
  border: 1px solid #e7e1d8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.06);
}

.category-card::before,
.category-card::after {
  content: none;
}

.category-card-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
}

.category-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card .category-chip {
  padding: 0.28rem 0.58rem;
  color: #59616b;
  background: #f3f0e9;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.category-card h3 {
  color: #171b24;
  font-size: 1.08rem;
  line-height: 1.08;
}

.category-card p {
  color: #626972;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.quick-phrase-grid {
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e7e1d8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.05);
}

.quick-phrase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 1rem;
  min-height: auto;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-top: 1px solid #ece6dc;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-phrase-card:first-child {
  border-top: 0;
}

.quick-phrase-card::after {
  content: ">";
  align-self: center;
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #9a9fa7;
  font-weight: 900;
}

.quick-phrase-card strong {
  color: #171b24;
  font-size: 0.96rem;
  line-height: 1.2;
}

.quick-phrase-card .jp {
  color: #7a2c37;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body::after {
    right: -185px;
    top: 74px;
    width: 300px;
    height: 300px;
    opacity: 0.12;
  }

  .site-header {
    min-height: 56px;
    padding: 0.68rem 0.9rem 0.55rem;
    border-bottom: 1px solid #e9e3d8;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .home-page > .hero {
    padding: 0.75rem 0 0.2rem;
  }

  .poster-cover {
    width: calc(100% - 1.5rem);
    padding: 1.55rem 1.25rem 1.7rem;
    border-radius: 20px;
    background:
      radial-gradient(circle at 94% 18%, rgba(207, 233, 239, 0.88) 0 48px, transparent 50px),
      #ffffff;
  }

  .poster-cover::before {
    right: -1.1rem;
    bottom: 1.05rem;
    width: 8rem;
    height: 4.4rem;
    border-color: rgba(83, 167, 211, 0.16);
  }

  .poster-cover::after {
    right: 1.3rem;
    bottom: 2rem;
    width: 5rem;
    background: rgba(83, 167, 211, 0.18);
  }

  .poster-cover h1 {
    max-width: 18rem;
    font-size: clamp(2.45rem, 10.6vw, 2.85rem);
    line-height: 0.96;
  }

  .poster-cover .lead {
    max-width: 19rem;
    margin-top: 0.82rem;
    font-size: 14px;
    line-height: 19px;
  }

  .hero-helper {
    max-width: 19rem;
    font-size: 12.5px;
    line-height: 18px;
  }

  .home-page > .section {
    width: calc(100% - 1.5rem);
  }

  .choice-section,
  .needs-section {
    padding-top: 1.55rem;
  }

  .categories-section,
  .food-card-cta-section,
  .quick-phrases-section {
    padding-top: 2rem;
  }

  .panel-kicker,
  .needs-section h2,
  .categories-section h2,
  .quick-phrases-section h2 {
    font-size: 27px;
  }

  .panel-note,
  .needs-section .section-header > p,
  .categories-section .section-header > p,
  .quick-phrases-section .section-header > p {
    font-size: 13px;
    line-height: 18px;
  }

  .choice-grid,
  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .choice-button,
  .need-card {
    min-height: 145px;
    padding: 0.9rem 0.72rem 0.82rem;
    border-radius: 15px;
  }

  .choice-button span:first-child,
  .need-card strong {
    font-size: 15px;
    line-height: 1.12;
  }

  .choice-button .card-pict,
  .need-card .card-pict {
    width: 3rem;
    height: 3rem;
    margin: 0.5rem auto 0.38rem;
    opacity: 0.72;
  }

  .choice-button small,
  .need-card > span:not(.card-pict) {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .food-card-cta-panel {
    gap: 1rem;
    padding: 1.18rem;
    border-left-width: 5px;
    border-radius: 18px;
  }

  .food-card-cta-panel h2 {
    font-size: 26px;
  }

  .food-card-cta-panel p {
    font-size: 13px;
    line-height: 18px;
  }

  .food-card-cta-panel .price-line {
    font-size: 14px;
  }

  .food-card-cta-panel .section-actions {
    gap: 0.55rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .category-card {
    min-height: 142px;
    padding: 0.92rem;
    border-radius: 15px;
  }

  .category-card-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .category-card h3 {
    font-size: 16px;
  }

  .category-card p {
    font-size: 11.5px;
    line-height: 1.34;
  }

  .quick-phrase-grid {
    border-radius: 15px;
  }

  .quick-phrase-card {
    padding: 0.82rem 0.95rem;
  }

  .quick-phrase-card strong {
    font-size: 13px;
  }

  .quick-phrase-card .jp {
    font-size: 12px;
  }
}

/* First Move Finder TOP layout: make the homepage feel like a situation chooser, not an article grid. */
.poster-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: 360px;
  background:
    radial-gradient(circle at 86% 18%, rgba(207, 233, 239, 0.7) 0 70px, transparent 72px),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.poster-cover h1,
.poster-cover .lead,
.poster-cover .hero-helper {
  grid-column: 1;
}

.hero-scene {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  min-height: 240px;
  isolation: isolate;
}

.hero-scene::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 10%;
  z-index: -2;
  width: 92%;
  height: 70%;
  border-radius: 34px;
  background: #f2f8fa;
}

.hero-scene::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 12%;
  z-index: -1;
  width: 82%;
  height: 42%;
  border-bottom: 3px solid rgba(83, 167, 211, 0.24);
  border-radius: 0 0 999px 999px;
  transform: rotate(-4deg);
}

.scene-route,
.scene-shop,
.scene-station,
.scene-lockers,
.scene-traveler {
  position: absolute;
  display: block;
}

.scene-route {
  right: 8%;
  bottom: 18%;
  width: 80%;
  height: 56%;
  border: 2px solid rgba(83, 167, 211, 0.26);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 80px 0 0;
  transform: rotate(-8deg);
}

.scene-route::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #53a7d3;
}

.scene-shop {
  left: 6%;
  bottom: 24%;
  width: 96px;
  height: 72px;
  border: 2px solid #172033;
  border-radius: 14px 14px 10px 10px;
  background:
    linear-gradient(90deg, #ffffff 0 20%, #f8dfe2 20% 36%, #ffffff 36% 52%, #f8dfe2 52% 68%, #ffffff 68% 100%) 0 0 / 100% 22px no-repeat,
    #ffffff;
  box-shadow: 0 12px 22px rgba(23, 32, 51, 0.09);
}

.scene-shop::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 36px;
  height: 32px;
  border: 2px solid #172033;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #fffaf4;
}

.scene-shop::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 36px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #be1a31;
}

.scene-station {
  right: 15%;
  top: 16%;
  width: 86px;
  height: 54px;
  border: 2px solid #172033;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(23, 32, 51, 0.08);
}

.scene-station::before {
  content: "EXIT";
  position: absolute;
  left: 13px;
  top: 13px;
  color: #172033;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.scene-station::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 17px;
  width: 18px;
  height: 10px;
  border-top: 3px solid #53a7d3;
  border-right: 3px solid #53a7d3;
  transform: rotate(45deg);
}

.scene-lockers {
  right: 10%;
  bottom: 22%;
  width: 92px;
  height: 86px;
  border: 2px solid #172033;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    linear-gradient(0deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    #ffffff;
  box-shadow: 0 12px 22px rgba(23, 32, 51, 0.08);
}

.scene-lockers::before,
.scene-lockers::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #be1a31;
}

.scene-lockers::before {
  left: 32px;
  top: 24px;
}

.scene-lockers::after {
  right: 14px;
  bottom: 20px;
}

.scene-traveler {
  left: 39%;
  bottom: 18%;
  width: 62px;
  height: 82px;
}

.scene-traveler::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #172033;
}

.scene-traveler::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 25px;
  width: 28px;
  height: 44px;
  border-radius: 15px 15px 8px 8px;
  background: #172033;
  box-shadow:
    33px 18px 0 -5px #ffffff,
    33px 18px 0 -2px #172033,
    33px 36px 0 -10px #172033;
}

.finder-section {
  padding-top: clamp(1.35rem, 3vw, 2.35rem);
}

.finder-panel {
  padding: clamp(1.25rem, 3vw, 2.15rem);
  border: 1px solid #e7e1d8;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.07);
}

.finder-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  gap: 1rem;
  align-items: end;
  padding-bottom: clamp(1.1rem, 2.6vw, 1.7rem);
  border-bottom: 1px solid #eee8de;
}

.finder-header .eyebrow {
  margin-bottom: 0.45rem;
  color: #be1a31;
}

.finder-header h2 {
  color: #171b24;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.finder-header > p {
  grid-column: 2;
  margin: 0;
  color: #626972;
  font-weight: 760;
  line-height: 1.5;
}

.finder-groups {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2.8vw, 1.85rem);
}

.finder-group {
  display: grid;
  gap: 0.9rem;
}

.finder-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.finder-group-header h3 {
  color: #171b24;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.finder-group-header p {
  max-width: 360px;
  margin: 0;
  color: #626972;
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1.4;
}

.finder-panel .choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.86rem;
}

.finder-panel .choice-button {
  min-height: 138px;
  padding: 0.98rem 0.82rem 0.9rem;
  border-color: #e9e2d8;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.055);
}

.finder-panel .choice-button span:first-child {
  font-size: 0.99rem;
}

.finder-panel .choice-button .card-pict {
  width: 2.65rem;
  height: 2.65rem;
  margin: 0.48rem auto 0.34rem;
}

.finder-panel .choice-button small {
  font-size: 0.8rem;
  line-height: 1.3;
}

.finder-panel .need-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.86rem;
}

.finder-panel .need-card {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.82rem;
  row-gap: 0.18rem;
  align-items: center;
  justify-items: start;
  min-height: 104px;
  padding: 1rem;
  border-radius: 16px;
  background: #fbfaf7;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.045);
}

.finder-panel .need-card .card-pict {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  opacity: 0.68;
}

.finder-panel .need-card strong {
  grid-column: 2;
  text-align: left;
  font-size: 1rem;
}

.finder-panel .need-card > span:not(.card-pict) {
  grid-column: 2;
  max-width: none;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.32;
}

.food-card-cta-section {
  padding-top: clamp(1.6rem, 3.3vw, 2.45rem);
}

.food-card-cta-panel {
  position: relative;
  overflow: hidden;
}

.food-card-cta-panel::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -42px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(190, 26, 49, 0.08);
  pointer-events: none;
}

.food-card-cta-panel > * {
  position: relative;
  z-index: 1;
}

.categories-section .section-header h2,
.quick-phrases-section .section-header h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card {
  min-height: 150px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.045);
}

.quick-phrases-section {
  padding-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .poster-cover {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    grid-column: 1;
    grid-row: auto;
    min-height: 150px;
  }

  .finder-header {
    grid-template-columns: 1fr;
  }

  .finder-header > p {
    grid-column: 1;
  }

  .finder-panel .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-panel .need-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .poster-cover {
    display: block;
    min-height: 0;
  }

  .hero-scene {
    min-height: 118px;
    margin-top: 1.2rem;
  }

  .hero-scene::before {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 92%;
    border-radius: 22px;
  }

  .hero-scene::after {
    right: 9%;
    bottom: 15%;
    width: 84%;
    height: 44%;
  }

  .scene-route {
    right: 8%;
    bottom: 22%;
    height: 48%;
  }

  .scene-shop {
    left: 5%;
    bottom: 22%;
    width: 72px;
    height: 55px;
    border-radius: 12px;
    background:
      linear-gradient(90deg, #ffffff 0 20%, #f8dfe2 20% 36%, #ffffff 36% 52%, #f8dfe2 52% 68%, #ffffff 68% 100%) 0 0 / 100% 17px no-repeat,
      #ffffff;
  }

  .scene-shop::before {
    left: 14px;
    width: 26px;
    height: 25px;
  }

  .scene-shop::after {
    right: 10px;
    top: 29px;
    width: 14px;
  }

  .scene-station {
    right: 10%;
    top: 12%;
    width: 68px;
    height: 42px;
    border-radius: 12px;
  }

  .scene-station::before {
    left: 10px;
    top: 9px;
    font-size: 11px;
  }

  .scene-station::after {
    right: 10px;
    top: 13px;
    width: 14px;
    height: 8px;
  }

  .scene-lockers {
    right: 8%;
    bottom: 18%;
    width: 64px;
    height: 58px;
    border-radius: 10px;
  }

  .scene-traveler {
    left: 43%;
    bottom: 16%;
    transform: scale(0.72);
    transform-origin: bottom center;
  }

  .finder-section {
    padding-top: 1.35rem;
  }

  .finder-panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .finder-header {
    padding-bottom: 1rem;
  }

  .finder-header h2 {
    font-size: 29px;
  }

  .finder-header > p {
    font-size: 13px;
    line-height: 18px;
  }

  .finder-groups {
    gap: 1.35rem;
    padding-top: 1.1rem;
  }

  .finder-group-header {
    display: block;
  }

  .finder-group-header h3 {
    font-size: 24px;
  }

  .finder-group-header p {
    margin-top: 0.35rem;
    font-size: 12.5px;
    line-height: 17px;
  }

  .finder-panel .choice-grid,
  .finder-panel .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.68rem;
  }

  .finder-panel .choice-button {
    min-height: 132px;
    padding: 0.84rem 0.64rem 0.76rem;
  }

  .finder-panel .choice-button span:first-child {
    font-size: 14.5px;
  }

  .finder-panel .choice-button .card-pict {
    width: 2.55rem;
    height: 2.55rem;
    margin: 0.42rem auto 0.3rem;
  }

  .finder-panel .choice-button small {
    font-size: 11px;
    line-height: 1.28;
  }

  .finder-panel .need-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    min-height: 138px;
    padding: 0.84rem 0.68rem;
    text-align: center;
  }

  .finder-panel .need-card .card-pict,
  .finder-panel .need-card strong,
  .finder-panel .need-card > span:not(.card-pict) {
    grid-column: 1;
  }

  .finder-panel .need-card .card-pict {
    grid-row: 2;
    width: 2.45rem;
    height: 2.45rem;
    margin: 0.4rem auto 0.28rem;
  }

  .finder-panel .need-card strong,
  .finder-panel .need-card > span:not(.card-pict) {
    text-align: center;
  }

  .finder-panel .need-card strong {
    grid-row: 1;
    font-size: 14.5px;
  }

  .finder-panel .need-card > span:not(.card-pict) {
    grid-row: 3;
    font-size: 11px;
    line-height: 1.28;
  }

  .food-card-cta-section {
    padding-top: 1.5rem;
  }
}

/* Practical but fun direction: useful structure, lighter travel energy. */
body {
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 214, 221, 0.62) 0 120px, transparent 122px),
    radial-gradient(circle at 94% 7%, rgba(207, 238, 231, 0.72) 0 160px, transparent 162px),
    linear-gradient(180deg, #fffaf1 0%, #f8fbf7 48%, #fff8f3 100%);
}

body::after {
  background: #bfe4f5;
  opacity: 0.2;
}

.site-header {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0.7rem auto 0;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
}

.brand-mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 14px rgba(23, 32, 51, 0.08));
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: #778084;
}

.top-nav {
  padding: 0.18rem;
  border-radius: 999px;
  background: #f4f8f6;
}

.top-nav a {
  border-radius: 999px;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  color: #172033;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(23, 32, 51, 0.08);
}

.page-shell {
  padding-top: clamp(0.7rem, 1.6vw, 1.4rem);
}

.home-page > .hero {
  background: transparent;
}

.poster-cover {
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.72fr);
  min-height: 440px;
  border: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 213, 190, 0.86) 0 94px, transparent 96px),
    radial-gradient(circle at 94% 78%, rgba(198, 235, 227, 0.96) 0 180px, transparent 182px),
    radial-gradient(circle at 54% 95%, rgba(191, 228, 245, 0.74) 0 130px, transparent 132px),
    #ffffff;
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.11);
}

.poster-cover::before,
.poster-cover::after {
  content: none;
}

.poster-cover h1 {
  max-width: 660px;
  color: #132033;
  font-size: clamp(3.6rem, 6.4vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.poster-cover .lead {
  max-width: 510px;
  margin-top: 1.25rem;
  color: #263241;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.42;
}

.hero-helper {
  max-width: 480px;
  color: #59636c;
  font-size: clamp(0.98rem, 1.32vw, 1.08rem);
}

.hero-mini-map {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  grid-column: 1;
  margin-top: 1.25rem;
}

.hero-mini-map span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 999px;
  color: #263241;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-mini-map span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #53a7d3;
}

.hero-mini-map span:nth-child(2)::before {
  background: #ffb84d;
}

.hero-mini-map span:nth-child(3)::before {
  background: #d96071;
}

.hero-scene {
  min-height: 310px;
  transform: rotate(-1deg);
}

.hero-scene::before {
  right: 0;
  bottom: 2%;
  width: 100%;
  height: 84%;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.82) 0 44px, transparent 46px),
    #edf9f5;
  box-shadow: inset 0 -24px 0 rgba(83, 167, 211, 0.1);
}

.hero-scene::after {
  right: 8%;
  bottom: 13%;
  width: 86%;
  height: 48%;
  border-bottom: 5px dotted rgba(83, 167, 211, 0.42);
}

.scene-route {
  right: 6%;
  bottom: 20%;
  border-width: 3px;
  border-color: rgba(83, 167, 211, 0.38);
}

.scene-route::after {
  width: 13px;
  height: 13px;
  background: #ffb84d;
  box-shadow: 0 0 0 6px rgba(255, 184, 77, 0.22);
}

.scene-shop,
.scene-station,
.scene-lockers {
  border-width: 3px;
  box-shadow: 0 16px 28px rgba(23, 32, 51, 0.12);
}

.scene-shop {
  left: 3%;
  bottom: 20%;
  width: 118px;
  height: 88px;
  border-radius: 22px 22px 14px 14px;
  background:
    linear-gradient(90deg, #ffffff 0 18%, #ffd7df 18% 34%, #ffffff 34% 50%, #ffd7df 50% 66%, #ffffff 66% 100%) 0 0 / 100% 27px no-repeat,
    #ffffff;
}

.scene-shop::before {
  left: 22px;
  width: 45px;
  height: 42px;
  border-width: 3px;
  background: #fff6e8;
}

.scene-shop::after {
  right: 16px;
  top: 44px;
  width: 25px;
  height: 6px;
  background: #d96071;
}

.scene-station {
  right: 12%;
  top: 12%;
  width: 106px;
  height: 66px;
  border-radius: 22px;
}

.scene-station::before {
  left: 16px;
  top: 17px;
  font-size: 16px;
}

.scene-station::after {
  right: 16px;
  top: 22px;
  border-color: #53a7d3;
}

.scene-lockers {
  right: 7%;
  bottom: 18%;
  width: 112px;
  height: 100px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    linear-gradient(0deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    #fffef9;
}

.scene-lockers::before,
.scene-lockers::after {
  width: 9px;
  height: 9px;
  background: #53a7d3;
}

.scene-traveler {
  left: 38%;
  bottom: 17%;
  transform: scale(1.08);
}

.scene-traveler::before,
.scene-traveler::after {
  background: #132033;
}

.finder-section {
  padding-top: clamp(1.6rem, 3.4vw, 2.7rem);
}

.finder-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3.3vw, 2.35rem);
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 4% 12%, rgba(255, 215, 223, 0.8) 0 120px, transparent 122px),
    radial-gradient(circle at 96% 6%, rgba(191, 228, 245, 0.86) 0 150px, transparent 152px),
    linear-gradient(180deg, #fff6e8 0%, #fffdf8 100%);
  box-shadow: 0 26px 60px rgba(23, 32, 51, 0.1);
}

.finder-panel::before {
  content: "";
  position: absolute;
  right: 2.2rem;
  top: 2rem;
  width: 8.5rem;
  height: 8.5rem;
  border: 2px dashed rgba(83, 167, 211, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.finder-header {
  position: relative;
  z-index: 1;
  align-items: center;
  padding-bottom: clamp(1.15rem, 2.6vw, 1.85rem);
  border-bottom: 2px solid rgba(23, 32, 51, 0.08);
}

.finder-header .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.6rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  color: #be1a31;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(23, 32, 51, 0.06);
}

.finder-header h2 {
  max-width: 620px;
  color: #132033;
  font-size: clamp(2.3rem, 4.3vw, 3.7rem);
  letter-spacing: -0.08em;
}

.finder-header > p {
  color: #34404c;
  font-size: 1.02rem;
}

.finder-groups {
  position: relative;
  z-index: 1;
  gap: clamp(1.55rem, 3.4vw, 2.35rem);
}

.finder-group {
  gap: 1rem;
}

.finder-group-header h3 {
  color: #132033;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  letter-spacing: -0.07em;
}

.finder-group-header p {
  color: #6c6260;
}

.finder-panel .choice-grid {
  gap: 0.95rem;
}

.finder-panel .choice-button {
  min-height: 152px;
  padding: 1rem 0.85rem 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--tile-bg, #ffffff);
  box-shadow: 0 14px 28px rgba(23, 32, 51, 0.08);
}

.finder-panel .choice-button.category-food {
  --tile-bg: #fff0f2;
}

.finder-panel .choice-button.category-move {
  --tile-bg: #ecf8ff;
}

.finder-panel .choice-button.category-relax {
  --tile-bg: #eff9ef;
}

.finder-panel .choice-button.category-help {
  --tile-bg: #f3f0ff;
}

.finder-panel .choice-button span:first-child {
  color: #172033;
  font-size: 1.03rem;
}

.finder-panel .choice-button .card-pict {
  width: 3rem;
  height: 3rem;
  margin: 0.52rem auto 0.4rem;
  opacity: 0.82;
  filter: drop-shadow(0 7px 8px rgba(23, 32, 51, 0.1));
}

.finder-panel .choice-button small {
  color: #4e5961;
  font-size: 0.82rem;
  font-weight: 760;
}

.finder-panel .need-grid {
  gap: 0.95rem;
}

.finder-panel .need-card {
  min-height: 112px;
  padding: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(23, 32, 51, 0.07);
}

.finder-panel .need-card::after {
  content: ">";
  position: absolute;
  right: 1rem;
  top: 50%;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 999px;
  color: #172033;
  background: #fff1a8;
  font-size: 0.88rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.finder-panel .need-card .card-pict {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.48rem;
  border-radius: 18px;
  background: #f4f8f6;
  opacity: 0.82;
}

.finder-panel .need-card strong {
  color: #172033;
}

.finder-panel .need-card > span:not(.card-pict) {
  max-width: calc(100% - 2rem);
  color: #59636c;
}

.food-card-cta-panel {
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  border: 0;
  border-left: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 24%, rgba(255, 255, 255, 0.36) 0 88px, transparent 90px),
    linear-gradient(135deg, #d51f3c 0%, #be1a31 54%, #8f1230 100%);
  box-shadow: 0 28px 64px rgba(190, 26, 49, 0.19);
}

.food-card-cta-panel::before {
  content: "";
  position: absolute;
  right: 14rem;
  bottom: -2.2rem;
  width: 9rem;
  height: 9rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  transform: rotate(-9deg);
  pointer-events: none;
}

.food-card-cta-panel::after {
  right: -28px;
  top: -28px;
  background: rgba(255, 255, 255, 0.16);
}

.food-card-cta-panel .eyebrow {
  color: #be1a31;
  background: #fff8f3;
}

.food-card-cta-panel h2,
.food-card-cta-panel p,
.food-card-cta-panel .trust-line {
  color: #ffffff;
}

.food-card-cta-panel .price-line {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.food-card-cta-panel .button.primary {
  color: #be1a31;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 32, 51, 0.16);
}

.food-card-cta-panel .button.secondary {
  color: #ffffff;
}

.categories-section,
.quick-phrases-section {
  position: relative;
}

.category-card {
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.07);
}

.category-card-icon {
  padding: 0.52rem;
  border-radius: 18px;
  background: #fff6e8;
}

.category-card.category-food .category-card-icon {
  background: #fff0f2;
}

.category-card.category-move .category-card-icon {
  background: #ecf8ff;
}

.category-card.category-relax .category-card-icon {
  background: #eff9ef;
}

.category-card.category-culture .category-card-icon {
  background: #fff7de;
}

.category-card.category-help .category-card-icon {
  background: #f3f0ff;
}

.quick-phrase-grid {
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.07);
}

.quick-phrase-card {
  padding-right: 1.35rem;
}

.quick-phrase-card::after {
  color: #be1a31;
  background: #fff0f2;
  border-radius: 999px;
  width: 1.55rem;
  height: 1.55rem;
  text-align: center;
  line-height: 1.55rem;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 1rem, 1120px);
    border-radius: 26px;
  }

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

  .hero-mini-map {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 6% 7%, rgba(255, 214, 221, 0.68) 0 78px, transparent 80px),
      radial-gradient(circle at 104% 5%, rgba(207, 238, 231, 0.8) 0 110px, transparent 112px),
      #fffaf1;
  }

  .site-header {
    position: sticky;
    top: 0.45rem;
    width: calc(100% - 1rem);
    padding: 0.55rem 0.68rem;
    border-radius: 22px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .poster-cover {
    width: calc(100% - 1rem);
    padding: 1.35rem 1.1rem 1.25rem;
    border-radius: 28px;
    background:
      radial-gradient(circle at 92% 12%, rgba(255, 213, 190, 0.78) 0 58px, transparent 60px),
      radial-gradient(circle at 88% 88%, rgba(198, 235, 227, 0.82) 0 96px, transparent 98px),
      #ffffff;
  }

  .poster-cover h1 {
    font-size: clamp(2.8rem, 12.2vw, 3.5rem);
  }

  .poster-cover .lead {
    max-width: 17.5rem;
    font-size: 15px;
    line-height: 20px;
  }

  .hero-helper {
    max-width: 17.5rem;
    font-size: 13px;
    line-height: 18px;
  }

  .hero-mini-map {
    margin-top: 1rem;
  }

  .hero-mini-map span {
    padding: 0.38rem 0.58rem;
    font-size: 11px;
  }

  .hero-scene {
    min-height: 132px;
    margin-top: 1rem;
    transform: none;
  }

  .hero-scene::before {
    border-radius: 24px;
  }

  .scene-shop {
    width: 78px;
    height: 58px;
  }

  .scene-station {
    width: 72px;
    height: 44px;
  }

  .scene-lockers {
    width: 68px;
    height: 60px;
  }

  .scene-traveler {
    left: 41%;
    transform: scale(0.72);
  }

  .finder-panel {
    width: calc(100% + 0.2rem);
    margin-left: -0.1rem;
    padding: 1rem;
    border-radius: 26px;
  }

  .finder-panel::before {
    right: -2.2rem;
    top: -2rem;
    width: 7rem;
    height: 7rem;
  }

  .finder-header h2 {
    font-size: 33px;
  }

  .finder-header > p {
    font-size: 13px;
    line-height: 18px;
  }

  .finder-panel .choice-button {
    min-height: 138px;
    border-radius: 20px;
  }

  .finder-panel .choice-button .card-pict {
    width: 2.75rem;
    height: 2.75rem;
  }

  .finder-panel .need-card {
    min-height: 142px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
  }

  .finder-panel .need-card::after {
    content: none;
  }

  .food-card-cta-panel {
    border-radius: 26px;
  }

  .food-card-cta-panel::before {
    right: -2.5rem;
    bottom: -3rem;
  }

  .category-card {
    border-radius: 20px;
  }

  .quick-phrase-grid {
    border-radius: 20px;
  }
}

/* Cool, clean, playful TOP tone: white cards, stronger accents, no creamy pastel fill. */
body {
  background:
    radial-gradient(circle at 4% 8%, rgba(83, 167, 211, 0.12) 0 130px, transparent 132px),
    radial-gradient(circle at 96% 10%, rgba(190, 26, 49, 0.08) 0 150px, transparent 152px),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 46%, #f5f8fb 100%);
}

body::after {
  background: #dbe8ef;
  opacity: 0.22;
}

.site-header {
  border-color: rgba(23, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
}

.top-nav {
  background: #eef4f7;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  background: #ffffff;
}

.poster-cover {
  border: 1px solid #dfe8ee;
  background:
    linear-gradient(135deg, rgba(83, 167, 211, 0.1) 0 28%, transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(190, 26, 49, 0.12) 0 76px, transparent 78px),
    #ffffff;
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.1);
}

.poster-cover h1,
.finder-header h2,
.finder-group-header h3 {
  color: #111827;
}

.poster-cover .lead {
  color: #263241;
}

.hero-helper,
.finder-header > p,
.finder-group-header p {
  color: #5c6670;
}

.hero-mini-map span {
  border-color: #dce6ec;
  color: #172033;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.08);
}

.hero-mini-map span::before {
  background: #be1a31;
}

.hero-mini-map span:nth-child(2)::before {
  background: #1677a8;
}

.hero-mini-map span:nth-child(3)::before {
  background: #c28a00;
}

.hero-scene::before {
  border-color: #dce8ee;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
  box-shadow: inset 0 -22px 0 rgba(83, 167, 211, 0.08);
}

.hero-scene::after {
  border-bottom-color: rgba(22, 119, 168, 0.35);
}

.scene-route {
  border-color: rgba(22, 119, 168, 0.38);
}

.scene-route::after {
  background: #be1a31;
  box-shadow: 0 0 0 6px rgba(190, 26, 49, 0.12);
}

.scene-shop,
.scene-station,
.scene-lockers {
  border-color: #172033;
  background-color: #ffffff;
}

.scene-shop {
  background:
    linear-gradient(90deg, #ffffff 0 18%, #be1a31 18% 34%, #ffffff 34% 50%, #be1a31 50% 66%, #ffffff 66% 100%) 0 0 / 100% 27px no-repeat,
    #ffffff;
}

.scene-shop::before {
  background: #ffffff;
}

.scene-shop::after {
  background: #1677a8;
}

.scene-lockers {
  background:
    linear-gradient(90deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    linear-gradient(0deg, transparent 49%, #172033 49% 51%, transparent 51%) center / 100% 100%,
    #ffffff;
}

.scene-lockers::before,
.scene-lockers::after {
  background: #be1a31;
}

.finder-panel {
  border: 1px solid #dfe8ee;
  background:
    linear-gradient(90deg, #be1a31 0 7px, transparent 7px),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.09);
}

.finder-panel::before {
  border-color: rgba(22, 119, 168, 0.22);
}

.finder-panel::after {
  content: "";
  position: absolute;
  right: 2.35rem;
  bottom: 2rem;
  width: 10rem;
  height: 4.5rem;
  border-bottom: 3px solid rgba(22, 119, 168, 0.14);
  border-radius: 0 0 999px 999px;
  pointer-events: none;
}

.finder-header {
  border-bottom-color: #e4edf2;
}

.finder-header .eyebrow,
.food-card-cta-panel .eyebrow {
  padding: 0;
  color: #be1a31;
  background: transparent;
  border: 0;
  box-shadow: none;
  letter-spacing: 0.04em;
}

.finder-panel .choice-button {
  border: 1px solid #dfe8ee;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.07);
}

.finder-panel .choice-button.category-food,
.finder-panel .choice-button.category-move,
.finder-panel .choice-button.category-relax,
.finder-panel .choice-button.category-help {
  --tile-bg: #ffffff;
}

.finder-panel .choice-button::after {
  content: ">";
  position: absolute;
  right: 0.85rem;
  top: 0.75rem;
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent, #be1a31);
  font-size: 0.78rem;
  font-weight: 950;
}

.finder-panel .choice-button .card-pict {
  opacity: 0.8;
  filter: none;
}

.finder-panel .choice-button small {
  color: #55616b;
}

.finder-panel .need-card {
  border: 1px solid #dfe8ee;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.06);
}

.finder-panel .need-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 999px;
  background: var(--accent, #be1a31);
}

.finder-panel .need-card::after {
  color: var(--accent, #be1a31);
  background: #ffffff;
  border: 1px solid currentColor;
}

.finder-panel .need-card .card-pict {
  background: #ffffff;
  border: 1px solid #e1e8ee;
}

.food-card-cta-panel {
  border: 1px solid rgba(190, 26, 49, 0.22);
  border-left: 7px solid #be1a31;
  background:
    radial-gradient(circle at 94% 18%, rgba(190, 26, 49, 0.08) 0 86px, transparent 88px),
    #ffffff;
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.09);
}

.food-card-cta-panel::before {
  border-color: rgba(190, 26, 49, 0.12);
}

.food-card-cta-panel::after {
  background: rgba(190, 26, 49, 0.08);
}

.food-card-cta-panel h2 {
  color: #111827;
}

.food-card-cta-panel p,
.food-card-cta-panel .trust-line {
  color: #34404c;
}

.food-card-cta-panel .price-line {
  color: #be1a31;
  background: #ffffff;
  border: 1px solid rgba(190, 26, 49, 0.28);
}

.food-card-cta-panel .button.primary {
  color: #ffffff;
  background: #be1a31;
  box-shadow: 0 16px 30px rgba(190, 26, 49, 0.22);
}

.food-card-cta-panel .button.secondary {
  color: #be1a31;
}

.category-card {
  border: 1px solid #dfe8ee;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.06);
}

.category-card-icon {
  background: #ffffff;
  border: 1px solid #dfe8ee;
}

.category-card.category-food .category-card-icon,
.category-card.category-move .category-card-icon,
.category-card.category-relax .category-card-icon,
.category-card.category-culture .category-card-icon,
.category-card.category-help .category-card-icon {
  background: #ffffff;
}

.category-card.category-food h3 {
  color: #be1a31;
}

.category-card.category-move h3 {
  color: #1677a8;
}

.category-card.category-relax h3 {
  color: #3f7f4a;
}

.category-card.category-culture h3 {
  color: #a86f00;
}

.category-card.category-help h3 {
  color: #6552c7;
}

.quick-phrase-grid {
  border: 1px solid #dfe8ee;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.05);
}

.quick-phrase-card::after {
  color: #ffffff;
  background: #be1a31;
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 0% 5%, rgba(83, 167, 211, 0.13) 0 92px, transparent 94px),
      radial-gradient(circle at 108% 6%, rgba(190, 26, 49, 0.08) 0 104px, transparent 106px),
      #f7fafc;
  }

  .poster-cover {
    background:
      linear-gradient(135deg, rgba(83, 167, 211, 0.11) 0 34%, transparent 34%),
      radial-gradient(circle at 92% 12%, rgba(190, 26, 49, 0.12) 0 54px, transparent 56px),
      #ffffff;
  }

  .finder-panel {
    background:
      linear-gradient(90deg, #be1a31 0 6px, transparent 6px),
      #ffffff;
  }

  .finder-panel .need-card::before {
    top: 0.82rem;
    bottom: 0.82rem;
  }

  .finder-panel .need-card::after {
    content: none;
  }

  .food-card-cta-panel {
    background:
      radial-gradient(circle at 98% 10%, rgba(190, 26, 49, 0.08) 0 72px, transparent 74px),
      #ffffff;
  }
}

/* Street warmth pass: keep the clean base, add travel cues and softer human energy. */
.poster-cover {
  background:
    linear-gradient(135deg, rgba(83, 167, 211, 0.1) 0 30%, transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(190, 26, 49, 0.11) 0 68px, transparent 70px),
    radial-gradient(circle at 72% 86%, rgba(255, 138, 61, 0.09) 0 120px, transparent 122px),
    #ffffff;
}

.hero-scene {
  min-height: 330px;
}

.hero-scene::before {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
}

.scene-lockers {
  display: none;
}

.scene-bubble {
  position: absolute;
  right: 34%;
  top: 8%;
  display: block;
  width: 78px;
  height: 44px;
  border: 3px solid #172033;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(23, 32, 51, 0.1);
}

.scene-bubble::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #be1a31;
  box-shadow:
    18px 0 0 #1677a8,
    36px 0 0 #ff8a3d;
}

.scene-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -9px;
  width: 17px;
  height: 17px;
  border-right: 3px solid #172033;
  border-bottom: 3px solid #172033;
  background: #ffffff;
  transform: rotate(45deg);
}

.scene-shop {
  bottom: 18%;
  transform: rotate(-1.5deg);
}

.scene-station {
  top: 18%;
  transform: rotate(1.5deg);
}

.scene-traveler {
  left: 40%;
  bottom: 14%;
  transform: scale(1.14);
}

.scene-traveler::after {
  box-shadow:
    33px 18px 0 -5px #ffffff,
    33px 18px 0 -2px #172033,
    33px 36px 0 -10px #172033,
    16px 18px 0 -9px #ff8a3d;
}

.finder-header .eyebrow {
  color: #be1a31;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: none;
}

.finder-header .eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2px;
  margin-left: 0.55rem;
  border-radius: 999px;
  background: #ff8a3d;
  vertical-align: middle;
}

.finder-group-header h3 {
  position: relative;
  display: inline-block;
}

.finder-group-header h3::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: -0.3rem;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
}

.finder-actions .finder-group-header h3::after {
  background: #1677a8;
}

.finder-panel .choice-button {
  overflow: hidden;
}

.finder-panel .choice-button::after {
  content: "→";
  right: 0.95rem;
  top: 0.82rem;
  width: auto;
  height: auto;
  color: var(--accent, #be1a31);
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
}

.finder-panel .choice-button .card-pict,
.finder-panel .need-card .card-pict {
  position: relative;
}

.finder-panel .choice-button .card-pict::before,
.finder-panel .need-card .card-pict::before {
  content: "";
  position: absolute;
  right: -0.1rem;
  bottom: -0.05rem;
  z-index: -1;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--accent, #be1a31);
  opacity: 0.18;
}

.finder-panel .choice-button .card-pict-img,
.finder-panel .need-card .card-pict-img {
  position: relative;
  z-index: 1;
}

.finder-panel .need-card::after {
  content: "→";
  right: 1rem;
  top: auto;
  bottom: 0.95rem;
  width: auto;
  height: auto;
  color: var(--accent, #be1a31);
  background: transparent;
  border: 0;
  font-size: 1.08rem;
  transform: none;
}

.finder-panel .need-card .card-pict {
  background: #ffffff;
  border-color: #dfe8ee;
}

.food-card-cta-panel {
  background:
    linear-gradient(90deg, rgba(190, 26, 49, 0.08), transparent 42%),
    radial-gradient(circle at 94% 18%, rgba(255, 138, 61, 0.1) 0 80px, transparent 82px),
    #ffffff;
}

.food-card-cta-panel::before {
  border-color: rgba(255, 138, 61, 0.18);
}

.food-card-cta-panel .price-line {
  border-color: rgba(190, 26, 49, 0.34);
}

.food-card-cta-panel .button.primary {
  background: #be1a31;
}

.category-card:hover,
.category-card:focus-visible,
.finder-panel .choice-button:hover,
.finder-panel .choice-button:focus-visible,
.finder-panel .need-card:hover,
.finder-panel .need-card:focus-visible {
  transform: translateY(-2px) rotate(-0.15deg);
}

.quick-phrase-card::after {
  content: "→";
}

@media (max-width: 620px) {
  .hero-scene {
    min-height: 140px;
  }

  .scene-bubble {
    right: 31%;
    top: 4%;
    width: 58px;
    height: 34px;
    border-width: 2px;
  }

  .scene-bubble::before {
    left: 12px;
    top: 14px;
    width: 5px;
    height: 5px;
    box-shadow:
      13px 0 0 #1677a8,
      26px 0 0 #ff8a3d;
  }

  .scene-bubble::after {
    left: 12px;
    bottom: -7px;
    width: 13px;
    height: 13px;
    border-width: 2px;
  }

  .scene-shop {
    bottom: 16%;
  }

  .scene-station {
    top: 16%;
  }

  .scene-traveler {
    bottom: 12%;
    transform: scale(0.78);
  }

  .finder-header .eyebrow {
    font-size: 0.82rem;
  }

  .finder-group-header h3::after {
    bottom: -0.24rem;
    height: 3px;
  }

  .finder-panel .choice-button::after {
    right: 0.72rem;
    top: 0.68rem;
    font-size: 0.95rem;
  }

  .finder-panel .need-card::after {
    content: none;
  }
}

/* Hero image slideshow: mobile-first papercraft visuals with readable live text. */
:root {
  --font-display: "Bricolage Grotesque", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-display);
}

.poster-cover {
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.72fr);
  min-height: 520px;
  padding: clamp(2.2rem, 4.5vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.42) 76%, rgba(255, 255, 255, 0.16) 100%),
    #ffffff;
}

.poster-cover::before,
.poster-cover::after {
  content: none;
}

.poster-cover h1,
.poster-cover .hero-title {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.02em;
  max-width: 620px;
  color: #111827;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7vw, 6.3rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.085em;
}

.hero-title-word,
.hero-title-rest {
  display: block;
}

.hero-title-word {
  letter-spacing: -0.12em;
}

.hero-title-rest {
  color: #111827;
}

.hero-title-letter-w {
  color: #c90000;
}

.hero-title-letter-h {
  color: #ffba00;
}

.hero-title-letter-a {
  color: #1dadff;
}

.hero-title-letter-t {
  color: #ff62b0;
}

.hero-title-letter-apostrophe {
  color: #ff7800;
}

.hero-title-letter-s {
  color: #404eff;
}

.poster-cover .lead,
.hero-helper {
  position: relative;
  z-index: 3;
  max-width: 440px;
  font-family: var(--font-display);
}

.poster-cover .lead {
  margin-top: 1.15rem;
  color: #202938;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  font-weight: 650;
  line-height: 1.38;
}

.hero-helper {
  margin-top: 0.5rem;
  color: #59636d;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-mini-map,
.hero-scene {
  display: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.5) 62%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(247, 250, 252, 0.24) 100%);
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 54%;
  opacity: 0;
  transform: scale(1.02);
  animation: heroImageFade 32s infinite ease-in-out;
}

.hero-visual-img-1 {
  opacity: 1;
  animation-delay: 0s;
}

.hero-visual-img-2 {
  animation-delay: 8s;
}

.hero-visual-img-3 {
  animation-delay: 16s;
}

.hero-visual-img-4 {
  animation-delay: 24s;
}

@keyframes heroImageFade {
  0%,
  23% {
    opacity: 1;
    transform: scale(1.02);
  }

  31%,
  93% {
    opacity: 0;
    transform: scale(1.055);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-img {
    animation: none;
  }

  .hero-visual-img:not(.hero-visual-img-1) {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .poster-cover {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-bottom: clamp(16rem, 46vw, 24rem);
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255, 255, 255, 0.54) 56%, rgba(255, 255, 255, 0.06) 100%);
  }

  .hero-visual-img {
    object-position: center bottom;
  }
}

@media (max-width: 620px) {
  .poster-cover {
    min-height: 620px;
    padding: 1.55rem 1.18rem 17.5rem;
    border-radius: 30px;
    background: #ffffff;
  }

  .poster-cover .hero-title {
    max-width: 21rem;
    font-size: clamp(3.15rem, 14.4vw, 4.45rem);
    line-height: 0.86;
  }

  .poster-cover .lead {
    max-width: 19rem;
    margin-top: 1rem;
    font-size: 15.5px;
    line-height: 20px;
  }

  .hero-helper {
    max-width: 18rem;
    font-size: 13px;
    line-height: 18px;
  }

  .hero-visual {
    top: 0;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 34%, rgba(255, 255, 255, 0.64) 56%, rgba(255, 255, 255, 0.08) 100%);
  }

  .hero-visual-img {
    object-fit: cover;
    object-position: center bottom;
  }
}

/* User-directed hero/header corrections: full-width image, readable text, simple header bar. */
body {
  background: #f2f2f2;
}

.site-header {
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 0.62rem clamp(1rem, 4vw, 2rem);
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url("./sozai/hero/logo.png") center / cover no-repeat;
  filter: none;
}

.top-nav {
  background: transparent;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  background: #f2f2f2;
  box-shadow: none;
}

.page-shell {
  width: 100%;
  padding-top: 0;
}

.home-page > .hero {
  width: 100%;
  padding: 0;
}

.poster-cover {
  width: 100%;
  min-height: min(1200px, 142vw);
  margin: 0;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 6vw, 4rem) clamp(18rem, 42vw, 31rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.poster-cover .hero-title,
.poster-cover .lead,
.hero-helper {
  width: fit-content;
  max-width: min(560px, calc(100vw - 2.4rem));
  padding-inline: 0.08em;
}

.poster-cover .hero-title {
  display: block;
  font-size: clamp(3.35rem, 13.5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
  letter-spacing: -0.08em;
}

.hero-title-rest {
  display: block;
  margin-top: 0.04em;
  color: #111827;
  letter-spacing: -0.055em;
}

.poster-cover .lead {
  margin-top: 1.18rem;
  font-size: clamp(1rem, 4.3vw, 1.42rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-helper {
  font-size: clamp(0.92rem, 3.7vw, 1.14rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.hero-visual {
  border-radius: 0;
}

.hero-visual::before {
  content: none;
}

.hero-visual-img {
  object-fit: cover;
  object-position: center bottom;
}

@media (min-width: 901px) {
  .poster-cover {
    min-height: 760px;
    padding-bottom: 8rem;
  }

  .poster-cover .hero-title,
  .poster-cover .lead,
  .hero-helper {
    margin-left: max(1rem, calc((100vw - 1120px) / 2));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 54px;
    padding: 0.52rem 0.85rem;
    border-radius: 0;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .poster-cover {
    width: 100%;
    min-height: 1200px;
    padding: 2.1rem 1.5rem 23rem;
    border-radius: 0;
  }

  .poster-cover .hero-title {
    max-width: calc(100vw - 3rem);
    font-size: clamp(3.8rem, 17vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
  }

  .hero-title-word {
    letter-spacing: -0.075em;
  }

  .hero-title-rest {
    max-width: 8.6em;
    letter-spacing: -0.045em;
  }

  .poster-cover .lead {
    max-width: calc(100vw - 3rem);
    margin-top: 1.35rem;
    font-size: 1.28rem;
    line-height: 1.18;
  }

  .hero-helper {
    max-width: calc(100vw - 3rem);
    font-size: 1.02rem;
  }
}

/* Fix hero word flow and keep the mobile artwork fitted to the viewport width. */
.poster-cover .hero-title .hero-title-word {
  display: inline-flex;
  align-items: baseline;
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.055em;
}

.poster-cover .hero-title .hero-title-word > span {
  display: inline;
  max-width: none;
  line-height: inherit;
}

.poster-cover .hero-title .hero-title-rest {
  display: block;
  max-width: 9.4em;
  color: #111827;
  letter-spacing: -0.025em;
}

.hero-visual {
  display: flex;
  align-items: flex-end;
}

.hero-visual-img {
  inset: auto 0 0;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  animation-name: heroImageFadeFlat;
}

@keyframes heroImageFadeFlat {
  0%,
  23% {
    opacity: 1;
  }

  31%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .poster-cover {
    min-height: min(870px, calc(100vw * 1.45 + 300px));
    padding: 2.05rem 1.5rem calc(100vw * 1.06);
  }

  .poster-cover .hero-title {
    max-width: calc(100vw - 3rem);
    font-size: clamp(3.5rem, 15.8vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.025em;
  }

  .poster-cover .hero-title .hero-title-word {
    letter-spacing: -0.05em;
  }

  .poster-cover .hero-title .hero-title-rest {
    max-width: 8.8em;
    letter-spacing: -0.02em;
  }
}

/* Hero composition: let the papercraft scene sit behind the live copy. */
.poster-cover {
  min-height: clamp(620px, 76vw, 900px);
  padding: clamp(1.7rem, 5vw, 4.2rem) clamp(1.1rem, 4.5vw, 4rem);
}

.poster-cover .hero-title {
  max-width: min(900px, calc(100vw - 2.2rem));
  font-size: clamp(3.8rem, 10vw, 7.35rem);
  line-height: 0.84;
  letter-spacing: -0.058em;
}

.poster-cover .hero-title .hero-title-word {
  display: inline-flex;
  vertical-align: baseline;
  letter-spacing: -0.052em;
}

.poster-cover .hero-title .hero-title-rest {
  display: inline;
  max-width: none;
  margin-left: 0.11em;
  letter-spacing: -0.04em;
}

.poster-cover .lead {
  max-width: min(520px, 58vw);
  margin-top: 0.7rem;
  color: #050914;
}

.hero-helper {
  max-width: min(520px, 58vw);
  color: #4f5965;
}

.hero-visual {
  inset: 0;
  display: block;
}

.hero-visual-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 620px) {
  .poster-cover {
    aspect-ratio: 1080 / 1200;
    min-height: auto;
    padding: clamp(1.35rem, 5.6vw, 2rem) clamp(1rem, 4.5vw, 1.5rem);
  }

  .poster-cover .hero-title {
    max-width: calc(100vw - 2rem);
    font-size: clamp(3rem, 12.8vw, 4rem);
    line-height: 0.86;
    letter-spacing: -0.052em;
  }

  .poster-cover .hero-title .hero-title-word {
    letter-spacing: -0.047em;
  }

  .poster-cover .hero-title .hero-title-rest {
    margin-left: 0.1em;
    letter-spacing: -0.035em;
  }

  .poster-cover .lead {
    max-width: 76%;
    margin-top: 0.62rem;
    font-size: clamp(1.04rem, 4.3vw, 1.28rem);
    line-height: 1.15;
  }

  .hero-helper {
    max-width: 76%;
    margin-top: 0.45rem;
    font-size: clamp(0.88rem, 3.55vw, 1.02rem);
    line-height: 1.2;
  }
}

/* Softer hero slideshow and no divider below the background image. */
.home-page > .hero,
.poster-hero,
.poster-cover,
.hero-visual {
  border-bottom: 0;
  box-shadow: none;
}

.home-page > .hero::before,
.home-page > .hero::after,
.poster-hero::before,
.poster-hero::after,
.hero::before,
.hero::after {
  content: none;
}

.hero-visual-img {
  animation: heroImageFadeSoft 48s infinite ease-in-out;
}

.hero-visual-img-1 {
  animation-delay: 0s;
}

.hero-visual-img-2 {
  animation-delay: 12s;
}

.hero-visual-img-3 {
  animation-delay: 24s;
}

.hero-visual-img-4 {
  animation-delay: 36s;
}

@keyframes heroImageFadeSoft {
  0%,
  25% {
    opacity: 1;
  }

  37.5%,
  87.5% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Soft readability halo for hero copy over papercraft images. */
.poster-cover .hero-title,
.poster-cover .lead,
.hero-helper {
  text-shadow:
    0 0 7px #f2f2f2,
    0 0 14px #f2f2f2,
    0 0 26px #f2f2f2,
    0 0 44px rgba(242, 242, 242, 0.98),
    0 3px 28px rgba(242, 242, 242, 0.92);
}

/* Use one consistent crossfade rhythm so every image eases in and out. */
.hero-visual-img {
  opacity: 0;
  animation: heroImageCrossfade 36s infinite ease-in-out both;
}

.hero-visual-img-1 {
  opacity: 1;
  animation-delay: -3s;
}

.hero-visual-img-2 {
  animation-delay: 6s;
}

.hero-visual-img-3 {
  animation-delay: 15s;
}

.hero-visual-img-4 {
  animation-delay: 24s;
}

@keyframes heroImageCrossfade {
  0% {
    opacity: 0;
  }

  8%,
  24% {
    opacity: 1;
  }

  32%,
  100% {
    opacity: 0;
  }
}

/* Keep the hero edge clean: no line, shadow, or old decorative pseudo-elements. */
.home-page > .hero,
.poster-hero,
.poster-cover,
.hero-visual {
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.home-page > .hero::before,
.home-page > .hero::after,
.poster-hero::before,
.poster-hero::after,
.poster-cover::before,
.poster-cover::after,
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page > .finder-section,
.finder-section.section {
  border-top: 0 !important;
  box-shadow: none !important;
}

.home-page > .hero + .finder-section {
  margin-top: 0 !important;
}

/* Home continuation: match the bold papercraft hero tone below the fold. */
.home-page {
  background: #f2f2f2;
}

.home-page > .section {
  border-top: 0 !important;
  padding-top: clamp(1.1rem, 3vw, 2rem);
  padding-bottom: clamp(1.25rem, 3.4vw, 2.4rem);
}

.finder-section {
  padding-top: clamp(1.1rem, 3vw, 2rem) !important;
}

.finder-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2.6rem);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.finder-panel::before {
  content: "";
  position: absolute;
  right: -4.8rem;
  top: -5.2rem;
  width: 14rem;
  height: 14rem;
  border: 2px solid rgba(201, 0, 0, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.finder-panel::after {
  content: "";
  position: absolute;
  left: -3.2rem;
  bottom: 18%;
  width: 9rem;
  height: 9rem;
  border-radius: 36% 64% 45% 55%;
  background: rgba(29, 173, 255, 0.08);
  pointer-events: none;
}

.finder-panel > * {
  position: relative;
  z-index: 1;
}

.finder-header,
.section-header {
  border-bottom: 0;
}

.finder-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: clamp(0.85rem, 3vw, 1.5rem);
  align-items: end;
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.finder-header .eyebrow,
.food-card-cta-panel .eyebrow,
.categories-section .eyebrow,
.quick-phrases-section .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.38rem;
  padding: 0;
  color: #c90000;
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-header .eyebrow::before,
.food-card-cta-panel .eyebrow::before,
.categories-section .eyebrow::before,
.quick-phrases-section .eyebrow::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #ffba00;
  box-shadow:
    0.64rem 0 0 #1dadff,
    1.28rem 0 0 #ff62b0;
}

.finder-header h2,
.categories-section .section-header h2,
.quick-phrases-section .section-header h2 {
  color: #111827;
  font-size: clamp(2rem, 5vw, 3.45rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.finder-header > p,
.finder-group-header p,
.categories-section .section-header > p,
.quick-phrases-section .section-header > p {
  color: #4f5965;
  font-size: clamp(0.94rem, 1.8vw, 1.08rem);
  font-weight: 650;
  line-height: 1.38;
}

.finder-groups {
  gap: clamp(1.35rem, 4vw, 2.45rem);
  padding-top: 0;
}

.finder-group {
  gap: 0.95rem;
}

.finder-group-header {
  align-items: end;
  padding-bottom: 0.12rem;
}

.finder-group-header h3 {
  color: #111827;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.finder-group-header h3::after {
  content: none;
}

.finder-panel .choice-grid {
  gap: clamp(0.72rem, 2vw, 1rem);
}

.finder-panel .choice-button {
  min-height: 150px;
  padding: 1rem 0.9rem 0.95rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.055);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.finder-panel .choice-button::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.85rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent, #c90000);
}

.finder-panel .choice-button::after {
  right: 0.86rem;
  top: 0.68rem;
  color: var(--accent, #c90000);
  background: transparent;
  border: 0;
  font-size: 1.05rem;
}

.finder-panel .choice-button span:first-child {
  margin-top: 0.28rem;
  color: #111827;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.finder-panel .choice-button .card-pict {
  width: clamp(3.7rem, 12vw, 4.65rem);
  height: clamp(3.7rem, 12vw, 4.65rem);
  margin-block: 0.28rem 0.16rem;
  padding: 0.45rem;
  border: 0;
  border-radius: 24px;
  background: #f7f7f7;
}

.finder-panel .choice-button small {
  color: #4f5965;
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  font-weight: 600;
  line-height: 1.22;
}

.finder-panel .need-grid {
  gap: clamp(0.75rem, 2.2vw, 1rem);
}

.finder-panel .need-card {
  min-height: 112px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.82rem 0.85rem;
  padding: 1rem 2.3rem 1rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.05);
}

.finder-panel .need-card .card-pict {
  grid-row: 1 / span 2;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0.48rem;
  border: 0;
  border-radius: 19px;
  background: #f7f7f7;
}

.finder-panel .need-card strong {
  align-self: end;
  color: #111827;
  font-size: clamp(0.98rem, 2.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.finder-panel .need-card > span:not(.card-pict) {
  max-width: none;
  color: #4f5965;
  font-size: clamp(0.78rem, 2.3vw, 0.9rem);
  font-weight: 620;
  line-height: 1.24;
}

.finder-panel .need-card::after {
  right: 1rem;
  top: 50%;
  bottom: auto;
  color: var(--accent, #c90000);
  font-size: 1.12rem;
  transform: translateY(-50%);
}

.finder-panel .choice-button:hover,
.finder-panel .choice-button:focus-visible,
.finder-panel .need-card:hover,
.finder-panel .need-card:focus-visible {
  border-color: rgba(17, 24, 39, 0.22);
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.09);
  transform: translateY(-2px);
}

.food-card-cta-panel {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr);
  gap: clamp(1.1rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid rgba(201, 0, 0, 0.18);
  border-left: 0;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(201, 0, 0, 0.09), transparent 42%),
    radial-gradient(circle at 92% 18%, rgba(255, 186, 0, 0.16) 0 74px, transparent 76px),
    #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.food-card-cta-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 0.42rem;
  border-radius: 999px;
  background: #c90000;
}

.food-card-cta-panel::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 1.25rem;
  width: 3.6rem;
  height: 2.4rem;
  border: 2px solid rgba(201, 0, 0, 0.18);
  border-radius: 14px;
  background: transparent;
  transform: rotate(5deg);
}

.food-card-cta-panel h2 {
  color: #111827;
  font-size: clamp(1.65rem, 4.4vw, 2.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.food-card-cta-panel p,
.food-card-cta-panel .trust-line {
  max-width: 620px;
  color: #34404c;
  font-weight: 640;
  line-height: 1.38;
}

.food-card-cta-panel .price-line {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.55rem;
  padding: 0.45rem 0.7rem;
  color: #c90000;
  background: #ffffff;
  border: 1px solid rgba(201, 0, 0, 0.28);
  border-radius: 999px;
  font-weight: 800;
}

.food-card-cta-panel .section-actions {
  align-items: stretch;
}

.food-card-cta-panel .button.primary {
  background: #c90000;
  box-shadow: 0 16px 28px rgba(201, 0, 0, 0.2);
}

.food-card-cta-panel .button.secondary {
  color: #c90000;
  background: #ffffff;
  border-color: rgba(201, 0, 0, 0.28);
}

.categories-section .section-header,
.quick-phrases-section .section-header {
  align-items: end;
  margin-bottom: clamp(0.9rem, 2.5vw, 1.25rem);
}

.category-grid {
  gap: clamp(0.7rem, 2vw, 1rem);
}

.category-card {
  min-height: 178px;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.045);
}

.category-card-icon {
  width: 3.35rem;
  height: 3.35rem;
  padding: 0.5rem;
  border: 0;
  border-radius: 20px;
  background: #f7f7f7;
}

.category-card .category-chip {
  color: #4f5965;
  background: transparent;
  border: 0;
  font-size: 0.72rem;
  font-weight: 760;
}

.category-card h3 {
  color: var(--category-title, #111827);
  font-size: clamp(1.06rem, 2.6vw, 1.26rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.category-card p {
  color: #4f5965;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 620;
  line-height: 1.25;
}

.quick-phrase-grid {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.045);
}

.quick-phrase-card {
  min-height: 72px;
  padding: 0.95rem 3.1rem 0.95rem 1.05rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.quick-phrase-card:last-child {
  border-bottom: 0;
}

.quick-phrase-card strong {
  color: #111827;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.quick-phrase-card .jp {
  color: #c90000;
  font-size: 0.92rem;
  font-weight: 760;
}

.quick-phrase-card::after {
  right: 1rem;
  color: #c90000;
  background: transparent;
  font-size: 1.15rem;
}

@media (max-width: 760px) {
  .finder-header,
  .food-card-cta-panel,
  .categories-section .section-header,
  .quick-phrases-section .section-header {
    grid-template-columns: 1fr;
  }

  .finder-header > p {
    grid-column: auto;
  }

  .finder-panel {
    border-radius: 28px;
  }

  .finder-panel .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-panel .need-grid {
    grid-template-columns: 1fr;
  }

  .food-card-cta-panel .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Finder cleanup: simple choice section under the illustrated hero. */
.finder-section {
  padding-top: clamp(1.45rem, 4vw, 2.6rem) !important;
}

.finder-panel {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.finder-panel::before,
.finder-panel::after {
  display: none;
  content: none;
}

.finder-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.62fr);
  gap: clamp(0.75rem, 3vw, 1.4rem);
  align-items: end;
  padding-bottom: clamp(1.05rem, 3vw, 1.7rem);
  border-bottom: 0;
}

.finder-header h2,
.categories-section .section-header h2,
.quick-phrases-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.94;
}

.finder-header > p {
  grid-column: auto;
  max-width: 27rem;
}

.finder-groups {
  gap: clamp(1.65rem, 4.2vw, 2.8rem);
}

.finder-group-header {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(180px, 0.38fr);
  gap: 0.8rem;
  align-items: end;
}

.finder-group-header h3 {
  font-size: clamp(1.55rem, 4.4vw, 2.35rem);
}

.finder-group-header p {
  margin: 0;
  text-align: right;
}

.finder-panel .choice-grid {
  gap: clamp(0.72rem, 2vw, 1rem);
}

.finder-panel .choice-button {
  min-height: 142px;
  padding: 1rem 0.85rem 0.95rem;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.045);
}

.finder-panel .choice-button::before,
.finder-panel .choice-button::after {
  display: none;
  content: none;
}

.finder-panel .choice-button span:first-child {
  margin: 0;
  color: #111827;
  font-size: clamp(1.08rem, 3.2vw, 1.28rem);
}

.finder-panel .choice-button .card-pict {
  width: clamp(3.35rem, 10.5vw, 4.1rem);
  height: clamp(3.35rem, 10.5vw, 4.1rem);
  margin-block: 0.38rem 0.22rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.finder-panel .choice-button small {
  max-width: 12rem;
  color: #4f5965;
}

.finder-panel .need-grid {
  gap: clamp(0.72rem, 2vw, 1rem);
}

.finder-panel .need-card {
  min-height: 104px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
}

.finder-panel .need-card::after {
  display: none;
  content: none;
}

.finder-panel .need-card .card-pict {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.finder-panel .need-card strong {
  font-size: clamp(1.02rem, 2.7vw, 1.18rem);
}

.finder-panel .need-card > span:not(.card-pict) {
  color: #4f5965;
  font-size: clamp(0.82rem, 2.25vw, 0.92rem);
}

.finder-panel .choice-button:hover,
.finder-panel .choice-button:focus-visible,
.finder-panel .need-card:hover,
.finder-panel .need-card:focus-visible {
  transform: translateY(-1px);
}

.categories-section .section-header,
.quick-phrases-section .section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.42fr);
  gap: clamp(0.75rem, 3vw, 1.4rem);
  align-items: end;
  border-bottom: 0;
}

.category-card {
  min-height: 164px;
  border-radius: 12px;
}

.category-card-icon {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.category-card.category-food .category-card-icon,
.category-card.category-move .category-card-icon,
.category-card.category-relax .category-card-icon,
.category-card.category-culture .category-card-icon,
.category-card.category-help .category-card-icon {
  background: transparent;
}

.quick-phrase-grid {
  border-radius: 12px;
}

.quick-phrase-card {
  border-radius: 0;
}

.quick-phrase-card::after {
  width: auto;
  height: auto;
  color: #c90000;
  background: transparent;
  line-height: 1;
}

@media (max-width: 760px) {
  .finder-header,
  .finder-group-header,
  .categories-section .section-header,
  .quick-phrases-section .section-header {
    grid-template-columns: 1fr;
  }

  .finder-group-header p {
    text-align: left;
  }

  .finder-panel .choice-button {
    min-height: 136px;
  }
}

/* Finder card simplification: no outlines, dots, left rails, or cramped tracking. */
.home-page > .section {
  letter-spacing: 0.006em;
}

.finder-header h2,
.finder-group-header h3,
.categories-section .section-header h2,
.quick-phrases-section .section-header h2,
.food-card-cta-panel h2 {
  letter-spacing: -0.018em;
}

.finder-header > p,
.finder-group-header p,
.finder-panel .choice-button small,
.finder-panel .need-card > span:not(.card-pict),
.category-card p,
.quick-phrase-card strong,
.quick-phrase-card .jp,
.food-card-cta-panel p,
.food-card-cta-panel .trust-line {
  letter-spacing: 0.006em;
}

.finder-panel .choice-button,
.finder-panel .need-card,
.category-card {
  border: 0 !important;
}

.finder-panel .need-card {
  border-left: 0 !important;
}

.finder-panel .choice-button::before,
.finder-panel .choice-button::after,
.finder-panel .need-card::before,
.finder-panel .need-card::after,
.finder-panel .choice-button .card-pict::before,
.finder-panel .choice-button .card-pict::after,
.finder-panel .need-card .card-pict::before,
.finder-panel .need-card .card-pict::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.finder-panel .choice-button .card-pict,
.finder-panel .need-card .card-pict,
.category-card-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.finder-panel .choice-button span:first-child,
.finder-panel .need-card strong,
.category-card h3 {
  letter-spacing: 0;
}

.quick-phrase-grid {
  border: 0 !important;
}

/* Density pass: shorter place labels, compact action cards, clean category cards. */
.finder-section {
  padding-top: clamp(1.25rem, 3.4vw, 2.15rem) !important;
}

.finder-header {
  padding-bottom: clamp(0.85rem, 2.4vw, 1.35rem);
}

.finder-groups {
  gap: clamp(1.35rem, 3.6vw, 2.25rem);
}

.finder-panel .choice-button {
  min-height: 128px;
  padding: 0.9rem 0.8rem 0.82rem;
}

.finder-panel .choice-button span:first-child {
  font-size: clamp(1.1rem, 3.2vw, 1.26rem);
  line-height: 1.04;
}

.finder-panel .choice-button .card-pict {
  width: clamp(3.15rem, 9.5vw, 3.82rem);
  height: clamp(3.15rem, 9.5vw, 3.82rem);
  margin-block: 0.3rem 0.16rem;
}

.finder-panel .choice-button small {
  font-size: clamp(0.82rem, 2.2vw, 0.94rem);
  line-height: 1.1;
}

.finder-panel .need-grid {
  gap: 0.72rem;
}

.finder-panel .need-card {
  min-height: 86px;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.42rem 0.78rem;
  align-items: center;
  padding: 0.78rem 0.9rem;
}

.finder-panel .need-card .card-pict {
  width: 2.5rem;
  height: 2.5rem;
  grid-row: 1 / span 2;
}

.finder-panel .need-card strong {
  align-self: end;
  font-size: clamp(1rem, 2.45vw, 1.13rem);
  line-height: 1.05;
}

.finder-panel .need-card > span:not(.card-pict) {
  align-self: start;
  font-size: clamp(0.8rem, 2.05vw, 0.88rem);
  line-height: 1.18;
}

.food-card-cta-panel {
  padding: clamp(1.45rem, 4.4vw, 2.65rem);
}

.food-card-cta-panel > div:first-child {
  display: grid;
  gap: 0.68rem;
}

.food-card-cta-panel h2 {
  margin: 0;
}

.food-card-cta-panel p {
  margin: 0;
}

.food-card-cta-panel .price-line {
  margin-top: 0.18rem;
}

.food-card-cta-panel .section-actions {
  gap: 0.72rem;
}

.categories-section .section-header {
  margin-bottom: clamp(0.85rem, 2.5vw, 1.2rem);
}

.category-grid {
  gap: 0.82rem;
}

.category-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text"
    "chip chip";
  gap: 0.28rem 0.82rem;
  align-items: start;
  padding: 0.95rem;
}

.category-card-icon {
  grid-area: icon;
  width: 3rem;
  height: 3rem;
  align-self: start;
}

.category-card h3 {
  grid-area: title;
  margin: 0;
  line-height: 1;
}

.category-card p {
  grid-area: text;
  margin: 0;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.22;
}

.category-card .category-chip {
  grid-area: chip;
  margin-top: 0.18rem;
  justify-self: start;
}

@media (max-width: 760px) {
  .finder-section {
    padding-top: 1.35rem !important;
  }

  .finder-panel .choice-button {
    min-height: 122px;
    padding: 0.82rem 0.72rem 0.74rem;
  }

  .finder-panel .choice-button .card-pict {
    width: 3.1rem;
    height: 3.1rem;
  }

  .finder-panel .need-card {
    min-height: 78px;
    padding: 0.68rem 0.78rem;
  }

  .finder-panel .need-card .card-pict {
    width: 2.35rem;
    height: 2.35rem;
  }

  .food-card-cta-panel {
    padding: 1.25rem;
  }

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

  .category-card {
    grid-template-columns: 2.7rem minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title chip"
      "icon text text";
    gap: 0.22rem 0.75rem;
    padding: 0.86rem;
  }

  .category-card-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .category-card .category-chip {
    margin-top: 0;
    justify-self: end;
    align-self: start;
  }
}

/* Place cards use dedicated papercraft image icons. */
.finder-places .choice-button .place-card-pict {
  display: grid;
  width: clamp(3.25rem, 5.4vw, 4.25rem);
  height: clamp(3.25rem, 5.4vw, 4.25rem);
  margin-block: 0.34rem 0.2rem;
  place-items: center;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}

.finder-places .place-card-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

@media (max-width: 760px) {
  .finder-places .choice-button .place-card-pict {
    width: clamp(2.625rem, 13vw, 3.5rem);
    height: clamp(2.625rem, 13vw, 3.5rem);
    margin-block: 0.3rem 0.18rem;
  }
}

/* Place card emphasis: larger icons/titles and brand-red group headings. */
.finder-group-header h3 {
  color: #be0036;
}

.finder-panel .choice-button span:first-child {
  font-size: clamp(1.22rem, 3.55vw, 1.42rem);
}

.finder-places .choice-button .place-card-pict {
  width: clamp(3.8rem, 6.2vw, 4.9rem);
  height: clamp(3.8rem, 6.2vw, 4.9rem);
  margin-block: 0.42rem 0.24rem;
}

@media (max-width: 760px) {
  .finder-panel .choice-button span:first-child {
    font-size: clamp(1.12rem, 4.6vw, 1.32rem);
  }

  .finder-places .choice-button .place-card-pict {
    width: clamp(3.15rem, 15vw, 4rem);
    height: clamp(3.15rem, 15vw, 4rem);
    margin-block: 0.34rem 0.2rem;
  }
}

/* More breathing room before the Finder group headings. */
.finder-group {
  padding-top: clamp(0.55rem, 2.1vw, 1.15rem);
}

.finder-group + .finder-group {
  padding-top: clamp(1rem, 3vw, 1.7rem);
}

/* Loosen hero headline tracking and add more air above Finder headings. */
.poster-cover .hero-title {
  letter-spacing: -0.018em;
}

.poster-cover .hero-title .hero-title-word {
  letter-spacing: -0.018em;
}

.poster-cover .hero-title .hero-title-rest {
  margin-left: 0.14em;
  letter-spacing: -0.01em;
}

.finder-groups {
  padding-top: clamp(0.85rem, 2.8vw, 1.45rem);
}

.finder-group {
  padding-top: clamp(1.1rem, 3.4vw, 1.9rem);
}

.finder-group + .finder-group {
  padding-top: clamp(1.65rem, 4.5vw, 2.7rem);
}

/* Final hero/header alignment pass. */
.poster-cover .hero-title {
  font-size: clamp(4.25rem, 11.2vw, 8.25rem);
  line-height: 0.98;
}

.site-header {
  justify-content: flex-start;
}

.brand {
  justify-content: flex-start;
  margin-right: auto;
  text-align: left;
}

.brand > span:not(.brand-mark) {
  text-align: left;
}

.top-nav {
  margin-left: auto;
}

@media (max-width: 760px) {
  .poster-cover .hero-title {
    font-size: clamp(3.35rem, 14vw, 4.6rem);
    line-height: 1;
  }
}

/* Make selected place icons more legible without changing the card layout. */
.finder-places .choice-button .place-card-pict {
  overflow: visible;
}

.finder-places .place-card-pict.is-place-icon-large .place-card-icon {
  transform: scale(1.2);
  transform-origin: center;
}

/* 2026 mobile reference pass: shared TOP and guide-page visual system. */
:root {
  --color-page-bg: #f0eef1;
  --color-card-bg: #ffffff;
  --color-text-main: #1f2933;
  --color-text-sub: #6b7280;
  --color-food: #e07d99;
  --color-food-soft: #eedee3;
  --color-ribbon: #66798a;
  --color-cat-food: #e07d99;
  --color-cat-move: #53a8d0;
  --color-cat-relax: #5f9f8a;
  --color-cat-culture: #d58645;
  --color-cat-help: #835fcd;
  --jfm-card-radius: 18px;
  --jfm-card-shadow: 0 8px 20px rgba(31, 41, 51, 0.055);
}

html,
body {
  background: var(--color-page-bg);
}

body {
  color: var(--color-text-main);
}

.home-page,
.guide-page {
  color: var(--color-text-main);
}

.home-page > .section {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin-inline: auto;
}

.home-page > .hero {
  width: 100%;
}

.home-page .finder-section {
  padding-top: clamp(1.8rem, 4vw, 3.1rem) !important;
}

.home-page .finder-panel {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .finder-header {
  display: block;
  padding: 0 0 clamp(1.7rem, 4vw, 2.6rem);
}

.home-page .finder-header h2,
.home-page .categories-section .section-header h2,
.home-page .quick-phrases-section .section-header h2 {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.home-page .finder-header > p,
.home-page .categories-section .section-header > p,
.home-page .quick-phrases-section .section-header > p {
  max-width: none;
  margin: 0.6rem 0 0;
  color: var(--color-text-sub);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}

.home-page .finder-groups {
  gap: clamp(2.2rem, 6vw, 4rem);
  padding: 0;
}

.home-page .finder-group,
.home-page .finder-group + .finder-group {
  gap: 1rem;
  padding: 0;
}

.home-page .finder-group-header {
  display: block;
  padding: 0;
}

.home-page .finder-group-header h3 {
  margin: 0;
  color: #be0036;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.home-page .finder-group-header p {
  margin: 0.45rem 0 0;
  color: var(--color-text-sub);
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 650;
  line-height: 1.4;
  text-align: left;
}

.home-page .finder-panel .choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.05rem);
}

.home-page .finder-panel .choice-button {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.05rem 0.8rem 0.95rem;
  border: 0 !important;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.home-page .finder-panel .choice-button span:first-child {
  min-height: 2.15em;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1.05rem, 2.7vw, 1.24rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

.home-page .finder-places .choice-button .place-card-pict,
.home-page .finder-places .choice-button .place-card-pict.is-place-icon-large {
  width: clamp(4.4rem, 7vw, 5.4rem);
  height: clamp(4.4rem, 7vw, 5.4rem);
  display: grid;
  place-items: center;
  margin: 0.32rem 0 0.2rem;
  overflow: visible;
}

.home-page .finder-places .place-card-icon,
.home-page .finder-places .place-card-pict.is-place-icon-large .place-card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.home-page .finder-panel .choice-button small {
  margin-top: auto;
  color: var(--color-food);
  font-size: clamp(0.8rem, 1.9vw, 0.92rem);
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
}

.home-page .finder-panel .need-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.72rem, 2vw, 1rem);
}

.home-page .finder-panel .need-card {
  min-height: 106px;
  display: grid;
  grid-template-columns: 4.3rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 0 !important;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.home-page .finder-panel .need-card .card-pict {
  grid-row: auto;
  width: 4.3rem;
  height: 4.3rem;
  display: grid;
  place-items: center;
}

.home-page .finder-panel .need-card .action-card-icon {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 4.3rem;
  max-height: 4.3rem;
  object-fit: contain;
}

.home-page .need-card-copy {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.home-page .need-card-copy strong {
  color: var(--color-text-main);
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.08;
}

.home-page .need-card-copy strong > span {
  display: inline;
}

.home-page .need-card-copy > span {
  color: var(--color-text-sub);
  font-size: clamp(0.82rem, 1.9vw, 0.94rem);
  font-weight: 650;
  line-height: 1.28;
}

.home-page .food-card-cta-section {
  padding-top: clamp(3.2rem, 8vw, 5.4rem);
}

.food-card-cta-panel {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  padding: clamp(3.8rem, 8vw, 5.2rem) clamp(1.2rem, 5vw, 3.25rem) clamp(1.4rem, 5vw, 2.6rem);
  border: 0;
  border-radius: clamp(1.35rem, 3vw, 2rem);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.food-card-cta-panel::before,
.food-card-cta-panel::after {
  display: none !important;
  content: none !important;
}

.food-card-ribbon {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  min-width: min(78%, 27rem);
  padding: 0.75rem 2.3rem 0.75rem 1.15rem;
  color: #fff;
  background: var(--color-ribbon);
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

.food-card-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  border-top: 1.25rem solid transparent;
  border-right: 0.8rem solid var(--color-card-bg);
  border-bottom: 1.25rem solid transparent;
}

.food-card-cta-content {
  position: relative;
  z-index: 2;
  width: min(100%, 50rem);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.food-card-cta-panel h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--color-food);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.food-card-cta-panel p {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(0.98rem, 2.2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.35;
}

.food-card-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.food-card-benefits span {
  padding: 0.34rem 0.65rem;
  border-radius: 5px;
  color: #fff;
  background: #f3a116;
  font-size: clamp(0.7rem, 1.7vw, 0.82rem);
  font-weight: 800;
  line-height: 1;
}

.food-card-cta-panel .section-actions {
  width: min(100%, 38rem);
  display: grid;
  gap: 0.85rem;
  margin-top: 0.3rem;
}

.food-card-cta-panel .button.primary {
  min-height: 3.35rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-food);
  box-shadow: none;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800;
}

.food-card-sample-link {
  color: #606060;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 750;
  text-decoration: none;
}

.food-card-sample-link::before {
  content: "→";
  margin-right: 0.55rem;
  color: var(--color-food);
}

.food-card-deco {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.food-card-deco-cow {
  top: 0.4rem;
  right: -3rem;
  width: clamp(7rem, 19vw, 13rem);
}

.food-card-deco-wheat {
  bottom: -3.5rem;
  left: -1.6rem;
  width: clamp(4rem, 10vw, 7rem);
}

.food-card-deco-milk {
  bottom: -1.4rem;
  left: 0.6rem;
  width: clamp(5rem, 12vw, 8rem);
}

.home-page .categories-section,
.home-page .quick-phrases-section {
  padding-top: clamp(2.8rem, 7vw, 4.8rem);
}

.home-page .categories-section .section-header,
.home-page .quick-phrases-section .section-header {
  display: block;
  margin-bottom: 1.15rem;
}

.home-page .category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-page .category-card {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 1.15rem 0.95rem;
  border: 0 !important;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
  text-align: center;
}

.home-page .category-card h3 {
  order: 1;
  margin: 0;
  color: var(--category-color, var(--color-text-main));
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 800;
  line-height: 1;
}

.home-page .category-card p {
  order: 2;
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  font-weight: 650;
  line-height: 1.28;
}

.home-page .category-card .category-chip {
  order: 3;
  margin-top: auto;
  padding: 0.27rem 0.58rem;
  border: 1px solid color-mix(in srgb, var(--category-color, #7c6fa8) 42%, white);
  border-radius: 999px;
  color: var(--category-color, #7c6fa8);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-page .category-card.category-food { --category-color: var(--color-cat-food); }
.home-page .category-card.category-move { --category-color: var(--color-cat-move); }
.home-page .category-card.category-relax { --category-color: var(--color-cat-relax); }
.home-page .category-card.category-culture { --category-color: var(--color-cat-culture); }
.home-page .category-card.category-help { --category-color: var(--color-cat-help); }

.home-page .quick-phrase-grid {
  overflow: hidden;
  display: block;
  border: 0 !important;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.home-page .quick-phrase-card {
  position: relative;
  min-height: 76px;
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 3.2rem 0.95rem 1rem;
  border-bottom: 1px solid #ece8ed;
  background: #fff;
}

.home-page .quick-phrase-card:last-child {
  border-bottom: 0;
}

.home-page .quick-phrase-card strong {
  color: var(--color-text-main);
  font-size: 0.96rem;
  font-weight: 800;
}

.home-page .quick-phrase-card .jp {
  color: #d82f3f;
  font-size: 0.9rem;
  font-weight: 750;
}

.home-page .quick-phrase-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  color: #d82f3f;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 800;
  transform: translateY(-50%);
}

/* Guide detail pages. */
.guide-page {
  --guide-accent: var(--color-cat-help);
  --guide-soft: #ece8f3;
  padding-top: clamp(1.1rem, 3vw, 2rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.guide-page.category-food {
  --guide-accent: var(--color-food);
  --guide-soft: var(--color-food-soft);
}

.guide-page.category-move { --guide-accent: var(--color-cat-move); --guide-soft: #e2f0f6; }
.guide-page.category-relax { --guide-accent: var(--color-cat-relax); --guide-soft: #e3efeb; }
.guide-page.category-culture { --guide-accent: var(--color-cat-culture); --guide-soft: #f4e8dc; }
.guide-page.category-help {
  --guide-accent: var(--color-cat-help);
  --guide-band: #7c6fa8;
  --guide-soft: #ebe8f3;
}

.guide-page .guide-page-header {
  max-width: var(--content-max, 880px);
  margin-inline: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.guide-page .crumbs {
  margin-bottom: 1.4rem;
  color: var(--color-text-sub);
  font-size: clamp(0.7rem, 1.7vw, 0.82rem);
  line-height: 1.35;
}

.guide-page .crumbs a {
  color: var(--guide-accent);
}

.guide-page .guide-page-header h1 {
  max-width: 15ch;
  margin: 0;
  color: #111418;
  font-size: clamp(2.15rem, 6.2vw, 4.5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.guide-intro-card {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.guide-intro-card:not(:has(.guide-intro-icon)) {
  grid-template-columns: 1fr;
}

.guide-intro-icon {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

.guide-intro-card p {
  margin: 0;
  color: var(--guide-accent);
  font-size: clamp(0.94rem, 2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.42;
}

.guide-intro-card p + p {
  margin-top: 0.65rem;
}

.guide-page .guide-layout {
  max-width: var(--content-max, 880px);
  display: block;
  margin: clamp(1.3rem, 4vw, 2.5rem) auto 0;
}

.guide-page .article-card {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.guide-page .article-section {
  padding: clamp(1.25rem, 4vw, 2.4rem) 0;
  border: 0;
  background: transparent;
}

.guide-page .guide-section-title {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--color-text-main);
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.guide-page .guide-section-title.has-icon img {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  object-fit: contain;
}

.colorful-first span:nth-child(1) { color: #c90000; }
.colorful-first span:nth-child(2) { color: #ffba00; }
.colorful-first span:nth-child(3) { color: #1dadff; }
.colorful-first span:nth-child(4) { color: #ff62b0; }
.colorful-first span:nth-child(5) { color: #404eff; }

.guide-page .first-move-box > p {
  max-width: 34ch;
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.28;
}

.guide-page .steps-section .guide-section-title,
.guide-page .dont-section .guide-section-title,
.guide-page .food-guide-cta > h2 {
  padding: 0.55rem 0.85rem;
  color: #fff;
  background: var(--guide-band, var(--guide-accent));
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  letter-spacing: 0;
}

.guide-page .steps-section ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.4rem;
}

.guide-page .steps-section li,
.guide-page .article-section > p,
.guide-page .dont-item p,
.guide-page .section-intro {
  color: var(--color-text-main);
  font-size: clamp(0.94rem, 2vw, 1.05rem);
  font-weight: 620;
  line-height: 1.48;
}

.guide-page .dont-list {
  display: grid;
  gap: 1.3rem;
}

.guide-page .dont-item h3 {
  margin: 0 0 0.45rem;
  color: var(--color-text-main);
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.14;
}

.guide-page .dont-item p {
  margin: 0;
  color: var(--color-text-sub);
}

.guide-page .communication-section {
  position: relative;
  margin-inline: 0;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
  background: var(--guide-soft);
}

.guide-page .communication-section + .communication-section {
  padding-top: 0.8rem;
}

.guide-page .communication-section .guide-section-title {
  color: var(--guide-accent);
}

.guide-page .section-intro {
  margin: -0.4rem 0 1rem;
  color: var(--color-text-sub);
}

.guide-page .phrase-grid,
.guide-page .staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.guide-page .phrase,
.guide-page .staff-phrase {
  display: grid;
  gap: 0.48rem;
  padding: 1rem;
  border: 0;
  border-radius: 14px;
  background: var(--color-card-bg);
  box-shadow: 0 5px 14px rgba(31, 41, 51, 0.045);
}

.guide-page .phrase .meaning,
.guide-page .staff-phrase .meaning {
  color: var(--color-text-sub);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.guide-page .phrase .romaji,
.guide-page .staff-phrase .romaji {
  color: var(--guide-accent);
  font-size: 0.9rem;
  font-weight: 650;
}

.guide-page .phrase .jp,
.guide-page .staff-phrase .jp {
  color: var(--color-text-main);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
}

.guide-page .your-move-label {
  width: fit-content;
  margin-top: 0.25rem;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  color: #fff;
  background: #9b94b0;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.guide-page .food-guide-cta {
  padding-top: clamp(1.8rem, 5vw, 3rem);
}

.guide-page .food-guide-cta > p {
  margin: 0 0 1.15rem;
}

.food-card-cta-panel.is-compact {
  padding: 3.2rem 1rem 1rem;
  border-radius: 15px;
}

.food-card-cta-panel.is-compact .food-card-ribbon {
  min-width: min(80%, 21rem);
  padding-block: 0.58rem;
  font-size: 0.72rem;
}

.food-card-cta-panel.is-compact .food-card-ribbon::after {
  border-top-width: 1rem;
  border-bottom-width: 1rem;
}

.food-card-cta-panel.is-compact h2 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
}

.food-card-cta-panel.is-compact p {
  font-size: 0.88rem;
}

.food-card-cta-panel.is-compact .food-card-benefits {
  gap: 0.35rem;
}

.food-card-cta-panel.is-compact .food-card-benefits span {
  padding: 0.24rem 0.42rem;
  font-size: 0.62rem;
}

.food-card-cta-panel.is-compact .button.primary {
  min-height: 2.8rem;
  font-size: 1rem;
}

.food-card-cta-panel.is-compact .food-card-deco-cow {
  right: -2.7rem;
  width: 8rem;
}

.food-card-cta-panel.is-compact .food-card-deco-wheat {
  width: 4rem;
}

.food-card-cta-panel.is-compact .food-card-deco-milk {
  width: 4.5rem;
}

.guide-page .related-guides-section > p {
  color: var(--color-text-sub);
}

.guide-page .related-guide-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.guide-page .related-guide-card {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 1.2rem;
  border: 0;
  border-radius: 14px;
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.guide-page .related-guide-card::before {
  content: "→";
  position: absolute;
  left: 0.5rem;
  color: var(--guide-accent);
  font-weight: 800;
}

.guide-page .related-guide-card::after {
  content: "›";
  position: absolute;
  right: 1.1rem;
  color: var(--color-text-sub);
  font-size: 1.35rem;
}

.guide-page .related-guide-card h3 {
  margin: 0 0 0 0.8rem;
  color: var(--color-text-main);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  font-weight: 800;
  line-height: 1.15;
}

.guide-page .related-guides-section .section-actions {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.guide-page .related-guides-section .button.secondary {
  min-height: 2.65rem;
  padding-inline: 1.1rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #aaa4bd;
}

.guide-page .side-panel {
  display: none;
}

@media (max-width: 760px) {
  .home-page > .section {
    width: min(calc(100% - var(--content-gutter-mobile)), var(--content-max));
  }

  .home-page .finder-section {
    padding-top: 1.6rem !important;
  }

  .home-page .finder-header {
    padding-bottom: 1.9rem;
  }

  .home-page .finder-panel .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .home-page .finder-panel .choice-button {
    min-height: 154px;
    padding: 0.85rem 0.55rem 0.75rem;
    border-radius: 14px;
  }

  .home-page .finder-panel .choice-button span:first-child {
    min-height: 2.05em;
    font-size: clamp(0.98rem, 4.5vw, 1.12rem);
  }

  .home-page .finder-places .choice-button .place-card-pict,
  .home-page .finder-places .choice-button .place-card-pict.is-place-icon-large {
    width: clamp(4.1rem, 21vw, 5rem);
    height: clamp(4.1rem, 21vw, 5rem);
  }

  .home-page .finder-panel .choice-button small {
    font-size: clamp(0.74rem, 3.4vw, 0.86rem);
  }

  .home-page .finder-panel .need-grid {
    grid-template-columns: 1fr;
  }

  .home-page .finder-panel .need-card {
    min-height: 92px;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
  }

  .home-page .finder-panel .need-card .card-pict,
  .home-page .finder-panel .need-card .action-card-icon {
    width: 4rem;
    height: 4rem;
    max-width: 4rem;
    max-height: 4rem;
  }

  .home-page .need-card-copy strong {
    font-size: 1.05rem;
  }

  .home-page .need-card-copy > span {
    font-size: 0.8rem;
  }

  .food-card-cta-panel {
    padding: 3.35rem 0.9rem 1.1rem;
    border-radius: 16px;
  }

  .food-card-ribbon {
    min-width: 78%;
    padding: 0.65rem 1.75rem 0.65rem 0.75rem;
    font-size: 0.72rem;
  }

  .food-card-ribbon::after {
    border-top-width: 1.05rem;
    border-bottom-width: 1.05rem;
  }

  .food-card-cta-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .food-card-cta-panel p {
    font-size: 0.88rem;
  }

  .food-card-benefits {
    gap: 0.35rem;
  }

  .food-card-benefits span {
    padding: 0.28rem 0.4rem;
    font-size: 0.63rem;
  }

  .food-card-deco-cow {
    right: -3.6rem;
    width: 8.5rem;
  }

  .food-card-deco-wheat {
    bottom: -2.8rem;
    left: -1.2rem;
    width: 3.8rem;
  }

  .food-card-deco-milk {
    bottom: -1rem;
    left: -0.1rem;
    width: 4.2rem;
  }

  .home-page .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .home-page .category-card {
    min-height: 142px;
    padding: 0.9rem 0.65rem;
    border-radius: 14px;
  }

  .home-page .category-card h3 {
    font-size: 1.05rem;
  }

  .home-page .category-card p {
    font-size: 0.72rem;
  }

  .home-page .quick-phrase-grid {
    border-radius: 14px;
  }

  .guide-page {
    padding-top: 0.8rem;
  }

  .guide-page .guide-page-header h1 {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .guide-intro-card {
    grid-template-columns: 5.1rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 12px;
  }

  .guide-intro-icon {
    width: 5.1rem;
    height: 5.1rem;
  }

  .guide-intro-card p {
    font-size: 0.82rem;
  }

  .guide-page .communication-section {
    margin-inline: -0.45rem;
    padding-inline: 0.45rem;
  }

  .guide-page .guide-section-title.has-icon img {
    width: 2.35rem;
    height: 2.35rem;
    flex-basis: 2.35rem;
  }

  .guide-page .phrase,
  .guide-page .staff-phrase {
    border-radius: 12px;
  }

  .food-card-cta-panel.is-compact {
    padding-top: 3rem;
  }
}

/* Minimal header: the fixed bottom navigation remains the primary navigation. */
.site-header {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding: 0.55rem clamp(0.9rem, 3vw, 1.5rem);
  border: 0;
  border-bottom: 1px solid rgba(31, 41, 51, 0.07);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.site-header .brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--color-text-main);
}

.site-header .brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
}

.site-header .brand strong {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* TOP lower-half repair: keep the Hero and place cards unchanged. */
.home-page .finder-panel .need-card {
  width: 100%;
  min-height: 104px;
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  padding: 0.9rem 1rem;
}

.home-page .finder-panel .need-card .card-pict {
  width: 4.75rem;
  height: 4.75rem;
  max-width: 4.75rem;
  max-height: 4.75rem;
  flex: 0 0 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.home-page .finder-panel .need-card .action-card-icon {
  width: 100%;
  height: 100%;
  max-width: 4.5rem;
  max-height: 4.5rem;
  object-fit: contain;
}

.home-page .finder-panel .need-card > .need-card-copy {
  width: auto;
  max-width: none !important;
  min-width: 0;
  flex: 1 1 auto;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.32rem;
  color: inherit;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.home-page .finder-panel .need-card .need-card-copy strong,
.home-page .finder-panel .need-card .need-card-copy > span {
  width: 100%;
  max-width: none;
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0;
  padding: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  text-align: left;
}

.home-page .finder-panel .need-card .need-card-copy strong {
  display: block;
  color: var(--color-text-main);
  font-size: clamp(1.08rem, 2.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.08;
}

.home-page .finder-panel .need-card .need-card-copy strong > span {
  display: inline;
}

.home-page .finder-panel .need-card .need-card-copy > span {
  color: var(--color-text-sub);
  font-size: clamp(0.84rem, 2vw, 0.96rem);
  font-weight: 650;
  line-height: 1.3;
}

.home-page .food-card-cta-panel {
  overflow: visible;
  margin-top: 0.65rem;
}

.home-page .food-card-ribbon {
  top: -0.65rem;
  left: -0.15rem;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(31, 41, 51, 0.08);
}

.home-page .food-card-deco {
  filter: drop-shadow(0 4px 4px rgba(31, 41, 51, 0.2));
}

.home-page .food-card-deco-wheat {
  bottom: 1.15rem;
  left: -0.5rem;
  width: clamp(4.5rem, 11vw, 7.2rem);
}

.home-page .food-card-deco-milk {
  bottom: -0.55rem;
  left: 0.25rem;
}

.home-page .food-card-benefits {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.3rem, 1.2vw, 0.6rem);
}

.home-page .food-card-benefits span {
  flex: 0 1 auto;
  white-space: nowrap;
}

.home-page .food-card-cta-panel .section-actions {
  width: min(86%, 31rem);
  justify-items: center;
}

.home-page .food-card-cta-panel .button.primary {
  width: 100%;
}

.home-page .category-card {
  height: 100%;
  min-height: 158px;
}

.home-page .category-card h3 {
  font-size: clamp(1.28rem, 3.5vw, 1.55rem);
}

.home-page .category-card .category-chip {
  min-height: 1.45rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  line-height: 1;
}

.home-page .quick-phrase-card {
  min-height: 82px;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.3rem;
  padding: 0.95rem 3rem 0.95rem 1rem;
}

.home-page .quick-phrase-card strong,
.home-page .quick-phrase-card .jp {
  display: block;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.home-page .quick-phrase-card strong {
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  line-height: 1.25;
}

.home-page .quick-phrase-card .jp {
  font-size: clamp(0.86rem, 2.1vw, 0.96rem);
  line-height: 1.35;
}

.home-page .quick-phrase-card::after {
  right: 1rem;
  font-size: 0.95rem;
}

body:has(.home-page) .site-footer {
  gap: 1.2rem;
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  color: #74717a;
  background: #e4e2e6;
  font-size: 0.88rem;
  line-height: 1.5;
}

body:has(.home-page) .site-footer strong {
  color: var(--color-text-main);
  font-size: 1rem;
}

body:has(.home-page) .site-footer p {
  max-width: 56ch;
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 620px) {
  body:has(.home-page) {
    padding-bottom: 6.75rem;
  }

  .home-page .finder-panel .need-card {
    min-height: 96px;
    gap: 0.8rem;
    padding: 0.72rem 0.8rem;
  }

  .home-page .finder-panel .need-card .card-pict {
    width: 4.35rem;
    height: 4.35rem;
    max-width: 4.35rem;
    max-height: 4.35rem;
    flex-basis: 4.35rem;
  }

  .home-page .finder-panel .need-card .action-card-icon {
    max-width: 4.15rem;
    max-height: 4.15rem;
  }

  .home-page .finder-panel .need-card .need-card-copy strong {
    font-size: clamp(1rem, 4.7vw, 1.15rem);
  }

  .home-page .finder-panel .need-card .need-card-copy > span {
    font-size: clamp(0.78rem, 3.5vw, 0.88rem);
  }

  .home-page .food-card-benefits {
    justify-content: center;
  }

  .home-page .food-card-benefits span {
    padding: 0.28rem 0.34rem;
    font-size: clamp(0.54rem, 2.45vw, 0.64rem);
  }

  .home-page .food-card-deco-wheat {
    bottom: 1rem;
    left: -0.65rem;
    width: 4.4rem;
  }

  .home-page .category-card {
    min-height: 150px;
  }

  .home-page .category-card h3 {
    font-size: clamp(1.12rem, 5vw, 1.28rem);
  }

  .home-page .category-card .category-chip {
    font-size: 0.7rem;
  }

  .home-page .quick-phrases-section {
    padding-bottom: 1.25rem;
  }

  .home-page .quick-phrase-card {
    min-height: 84px;
  }

  body:has(.home-page) .site-footer {
    padding: 1.5rem 1rem calc(1.5rem + 5.75rem);
    font-size: 0.8rem;
  }
}

/* Reference-size lock for the TOP lower sections. */
.home-page .finder-panel .need-card {
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.home-page .finder-panel .need-card .card-pict,
.home-page .finder-panel .need-card .action-card-icon,
.home-page .finder-panel .need-card > .need-card-copy,
.home-page .finder-panel .need-card .need-card-copy strong,
.home-page .finder-panel .need-card .need-card-copy > span {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  text-transform: none !important;
}

.home-page .finder-panel .need-card .card-pict {
  order: 1;
  flex: 0 0 clamp(72px, 9.7vw, 88px);
  width: clamp(72px, 9.7vw, 88px);
  height: clamp(72px, 9.7vw, 88px);
  max-width: clamp(72px, 9.7vw, 88px);
  max-height: clamp(72px, 9.7vw, 88px);
  padding: 0 !important;
}

.home-page .finder-panel .need-card .action-card-icon {
  width: 100%;
  height: 100%;
  max-width: clamp(64px, 7.95vw, 72px);
  max-height: clamp(64px, 7.95vw, 72px);
  object-fit: contain;
}

.home-page .finder-panel .need-card > .need-card-copy {
  order: 2;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  align-self: stretch;
}

.home-page .finder-panel .need-card .need-card-copy strong {
  font-size: clamp(20px, 5.286vw, 48px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

.home-page .finder-panel .need-card .need-card-copy > span {
  font-size: clamp(12px, 2.864vw, 26px) !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
}

.home-page .food-card-cta-panel {
  overflow: hidden;
  margin-top: 0.65rem;
}

.home-page .food-card-ribbon {
  top: 0.55rem;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: 76%;
  padding: 0.7rem 1rem;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(31, 41, 51, 0.08);
}

.home-page .food-card-ribbon::after {
  display: none;
  content: none;
}

.home-page .food-card-deco {
  max-width: 100%;
  opacity: 0.86;
  filter: drop-shadow(0 3px 4px rgba(31, 41, 51, 0.2));
}

.home-page .food-card-deco-cow {
  top: 0.5rem;
  right: 0.25rem;
  width: clamp(6rem, 15vw, 9.5rem);
}

.home-page .food-card-deco-wheat {
  bottom: 1.25rem;
  left: 0.45rem;
  width: clamp(2.7rem, 5.4vw, 3.8rem);
}

.home-page .food-card-deco-milk {
  bottom: 0.2rem;
  left: 0.35rem;
  width: clamp(3.7rem, 7.5vw, 5.4rem);
}

.home-page .food-card-cta-panel .button.primary {
  font-size: clamp(20px, 5.286vw, 48px);
}

.home-page .category-card {
  min-height: clamp(150px, 21vw, 190px);
}

.home-page .category-card h3 {
  width: 100%;
  font-size: clamp(23px, 6.39vw, 58px);
  line-height: 1;
}

.home-page .category-card p {
  width: 100%;
  font-size: clamp(12px, 2.64vw, 24px);
  line-height: 1.28;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
}

.home-page .category-card .category-chip {
  font-size: clamp(11px, 1.65vw, 15px);
}

.home-page .quick-phrase-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
}

.home-page .quick-phrase-card strong,
.home-page .quick-phrase-card .jp {
  width: calc(100% - 0.5rem);
  text-align: left;
  text-transform: none;
}

@media (max-width: 620px) {
  .home-page .finder-panel .need-card {
    gap: 14px;
  }

  .home-page .finder-panel .need-card .card-pict {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
  }

  .home-page .finder-panel .need-card .action-card-icon {
    max-width: 64px;
    max-height: 64px;
  }

  .home-page .food-card-ribbon {
    max-width: 74%;
    padding: 0.62rem 0.7rem;
  }

  .home-page .food-card-deco-cow {
    right: 0.15rem;
    width: 6.4rem;
  }

  .home-page .food-card-deco-wheat {
    bottom: 1rem;
    left: 0.25rem;
    width: 2.8rem;
  }

  .home-page .food-card-deco-milk {
    bottom: 0.15rem;
    left: 0.2rem;
    width: 3.8rem;
  }
}

/* TOP lower-section sizing refinements. */
.home-page .finder-panel .need-card .card-pict {
  flex-basis: clamp(108px, 14.55vw, 132px);
  width: clamp(108px, 14.55vw, 132px);
  height: clamp(108px, 14.55vw, 132px);
  max-width: clamp(108px, 14.55vw, 132px);
  max-height: clamp(108px, 14.55vw, 132px);
}

.home-page .finder-panel .need-card .action-card-icon {
  max-width: clamp(96px, 11.9vw, 108px);
  max-height: clamp(96px, 11.9vw, 108px);
}

.home-page .food-card-deco-cow-crop {
  top: 0.45rem;
  right: 0.2rem;
  width: clamp(4.8rem, 11vw, 6.5rem);
  height: clamp(3.9rem, 9vw, 5.2rem);
  max-width: none;
  overflow: hidden;
}

.home-page .food-card-deco-cow-crop .food-card-deco-cow {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  display: block;
  width: clamp(10.5rem, 24vw, 14rem);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: none;
}

.home-page .food-card-deco-wheat {
  bottom: 3.6rem;
}

.home-page .category-card h3 {
  font-size: clamp(21px, 5.286vw, 48px);
}

.home-page .category-card p {
  font-size: clamp(12px, 2.64vw, 24px);
  text-align: left;
}

@media (max-width: 620px) {
  .home-page .finder-panel .need-card .card-pict {
    flex-basis: 108px;
    width: 108px;
    height: 108px;
    max-width: 108px;
    max-height: 108px;
  }

  .home-page .finder-panel .need-card .action-card-icon {
    max-width: 96px;
    max-height: 96px;
  }

  .home-page .food-card-deco-cow-crop {
    width: 4.8rem;
    height: 3.9rem;
  }

  .home-page .food-card-deco-cow-crop .food-card-deco-cow {
    width: 10.5rem;
  }

  .home-page .food-card-deco-wheat {
    bottom: 3.2rem;
  }
}

/* Compact action-card height while preserving the enlarged icon. */
.home-page .finder-panel .need-card {
  min-height: 0;
  padding-block: 0.25rem;
}

.home-page .finder-panel .need-card .card-pict {
  flex-basis: clamp(96px, 11.9vw, 108px);
  width: clamp(96px, 11.9vw, 108px);
  height: clamp(96px, 11.9vw, 108px);
  max-width: clamp(96px, 11.9vw, 108px);
  max-height: clamp(96px, 11.9vw, 108px);
}

.home-page .finder-panel .need-card .action-card-icon {
  max-width: clamp(96px, 11.9vw, 108px);
  max-height: clamp(96px, 11.9vw, 108px);
}

/* Keep the full cow image; the Food Card itself clips its right side. */
.home-page .food-card-deco-cow {
  top: 0.4rem;
  right: clamp(-8.2rem, -14vw, -5.4rem);
  bottom: auto;
  left: auto;
  width: clamp(10rem, 24vw, 14rem);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 620px) {
  .home-page .finder-panel .need-card {
    min-height: 0;
    padding-block: 0.2rem;
  }

  .home-page .finder-panel .need-card .card-pict,
  .home-page .finder-panel .need-card .action-card-icon {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
    max-width: 96px;
    max-height: 96px;
  }

  .home-page .food-card-deco-cow {
    right: -6.9rem;
    width: 11rem;
  }
}

/* Larger place names without changing the place-card footprint. */
.home-page .finder-panel .choice-button {
  padding-block: 0.72rem 0.62rem;
}

.home-page .finder-panel .choice-button span:first-child {
  min-height: 1.9em;
  font-size: clamp(1.18rem, 3vw, 1.4rem);
  line-height: 1.02;
}

@media (max-width: 620px) {
  .home-page .finder-panel .choice-button {
    min-height: 154px;
    padding-block: 0.66rem 0.56rem;
  }

  .home-page .finder-panel .choice-button span:first-child {
    min-height: 1.9em;
    font-size: clamp(1.12rem, 4.8vw, 1.3rem);
  }
}

/* Final lower-page template pass. Scoped so the TOP remains unchanged. */
body:has(.guide-page) {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  color: var(--color-text-main);
  background: var(--color-page-bg);
}

.guide-page {
  padding: clamp(1rem, 3vw, 1.8rem) 0 clamp(3rem, 7vw, 5rem) !important;
  background: transparent !important;
}

.guide-page .guide-page-header {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.guide-page .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  margin: 0 0 clamp(1rem, 2.5vw, 1.45rem);
  color: var(--color-text-sub);
  font-size: clamp(0.68rem, 1.5vw, 0.8rem);
  font-weight: 650;
  line-height: 1.35;
}

.guide-page .crumbs a {
  color: var(--guide-accent);
}

.guide-page .guide-page-header h1 {
  max-width: 16ch !important;
  margin: 0 !important;
  color: #111418;
  font-size: clamp(2.1rem, 6vw, 3.65rem) !important;
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.guide-page .guide-intro-card {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 1.2rem);
  margin: clamp(1rem, 3vw, 1.5rem) 0 0 !important;
  padding: clamp(0.8rem, 2.4vw, 1.15rem) !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--color-card-bg) !important;
  box-shadow: 0 4px 12px rgba(31, 41, 51, 0.04) !important;
}

.guide-page .guide-intro-icon {
  width: clamp(4.8rem, 12vw, 6.5rem) !important;
  height: clamp(4.8rem, 12vw, 6.5rem) !important;
  flex: 0 0 clamp(4.8rem, 12vw, 6.5rem);
  object-fit: contain;
}

.guide-page .guide-intro-card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.guide-page .guide-intro-card p {
  margin: 0 !important;
  color: var(--guide-accent) !important;
  font-size: clamp(0.9rem, 2.2vw, 1.08rem) !important;
  font-weight: 650 !important;
  line-height: 1.42 !important;
}

.guide-page .guide-intro-card p + p {
  margin-top: 0.55rem !important;
}

.guide-page .guide-layout {
  width: 100%;
  max-width: none;
  display: block !important;
  margin: clamp(1rem, 3vw, 1.8rem) 0 0 !important;
}

.guide-page .article-card {
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.guide-page .article-section {
  margin: 0 !important;
  padding: clamp(1.45rem, 4.5vw, 2.65rem) 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.guide-page .guide-section-title {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0 0 clamp(0.8rem, 2.5vw, 1.15rem) !important;
  padding: 0 !important;
  color: var(--color-text-main) !important;
  background: transparent !important;
  font-size: clamp(1.55rem, 4.5vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
}

.guide-page .first-move-box {
  position: relative;
  padding-left: clamp(0.95rem, 2.5vw, 1.3rem) !important;
}

.guide-page .first-move-box::before {
  content: "";
  position: absolute;
  top: clamp(1.45rem, 4.5vw, 2.65rem);
  bottom: clamp(1.45rem, 4.5vw, 2.65rem);
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: var(--guide-accent);
}

.guide-page .first-move-box > p {
  max-width: 35ch;
  margin: 0 !important;
  color: var(--color-text-main) !important;
  font-size: clamp(1.16rem, 3.2vw, 1.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.guide-page .steps-section .guide-section-title,
.guide-page .dont-section .guide-section-title,
.guide-page .food-guide-cta > h2 {
  padding: 0.5rem 0.8rem !important;
  color: #fff !important;
  background: var(--guide-band, var(--guide-accent)) !important;
  font-size: clamp(1.15rem, 3.2vw, 1.5rem) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.guide-page .steps-section ol {
  display: grid;
  gap: clamp(0.65rem, 2vw, 0.9rem);
  margin: 0 !important;
  padding-left: 1.45rem !important;
}

.guide-page .steps-section li {
  padding-left: 0.15rem;
  color: var(--color-text-main);
  font-size: clamp(0.94rem, 2.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
}

.guide-page .dont-list {
  display: grid;
  gap: clamp(1.35rem, 3.5vw, 2rem);
}

.guide-page .dont-item {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.guide-page .dont-item h3 {
  margin: 0 0 0.45rem !important;
  color: var(--color-text-main);
  font-size: clamp(1.15rem, 3vw, 1.42rem) !important;
  font-weight: 800;
  line-height: 1.15;
}

.guide-page .dont-item p,
.guide-page .article-section > p,
.guide-page .section-intro {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(0.92rem, 2.15vw, 1.05rem);
  font-weight: 600;
  line-height: 1.5;
}

.guide-page .dont-item p {
  color: var(--color-text-sub);
}

.guide-page .communication-section {
  width: 100%;
  margin-inline: 0 !important;
  padding: clamp(1.65rem, 4.5vw, 2.6rem) clamp(1.25rem, 3vw, 2rem) !important;
  background: var(--guide-soft) !important;
  box-shadow: none !important;
}

.guide-page .communication-section + .communication-section {
  padding-top: 0.75rem !important;
}

.guide-page .communication-section .guide-section-title {
  color: var(--guide-accent) !important;
}

.guide-page .guide-section-title.has-icon img {
  width: clamp(2.5rem, 6vw, 3.5rem) !important;
  height: clamp(2.5rem, 6vw, 3.5rem) !important;
  flex: 0 0 clamp(2.5rem, 6vw, 3.5rem);
  object-fit: contain;
  border: 0 !important;
  box-shadow: none !important;
}

.guide-page .section-intro {
  margin: -0.3rem 0 1rem !important;
  color: var(--color-text-sub) !important;
}

.guide-page .phrase-grid,
.guide-page .staff-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(0.8rem, 2.4vw, 1rem) !important;
}

.guide-page .phrase,
.guide-page .staff-phrase {
  display: grid !important;
  gap: 0.5rem !important;
  margin: 0 !important;
  padding: clamp(0.9rem, 2.5vw, 1.15rem) !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: var(--color-card-bg) !important;
  box-shadow: 0 3px 10px rgba(31, 41, 51, 0.035) !important;
}

.guide-page .phrase .meaning,
.guide-page .staff-phrase .meaning {
  color: var(--color-text-sub) !important;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

.guide-page .phrase .romaji,
.guide-page .staff-phrase .romaji {
  color: var(--guide-accent) !important;
  font-size: clamp(0.84rem, 1.9vw, 0.96rem) !important;
  font-weight: 650 !important;
}

.guide-page .phrase .jp,
.guide-page .staff-phrase .jp {
  color: var(--color-text-main) !important;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.guide-page .your-move-label {
  width: fit-content;
  margin-top: 0.2rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  background: #9e98ad;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.guide-page #stuck,
.guide-page #culture {
  background: transparent !important;
  box-shadow: none !important;
}

.guide-page #stuck .guide-section-title,
.guide-page #culture .guide-section-title {
  color: var(--color-text-main) !important;
}

.guide-page .food-guide-cta {
  padding-top: clamp(1.8rem, 5vw, 3rem) !important;
}

.guide-page .food-guide-cta > p {
  margin: 0 0 clamp(1rem, 3vw, 1.4rem) !important;
}

.guide-page .food-card-cta-panel.is-compact {
  position: relative;
  overflow: hidden !important;
  min-height: 0;
  padding: clamp(3.25rem, 7vw, 4rem) clamp(0.9rem, 3vw, 1.4rem) clamp(1rem, 3vw, 1.35rem) !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: var(--color-card-bg) !important;
  box-shadow: 0 4px 12px rgba(31, 41, 51, 0.04) !important;
}

.guide-page .food-card-cta-panel.is-compact .food-card-ribbon {
  top: 0.55rem;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: 78%;
  padding: 0.62rem 0.8rem;
  border-radius: 0;
  color: #fff;
  background: var(--color-ribbon);
  box-shadow: none;
}

.guide-page .food-card-cta-panel.is-compact .food-card-ribbon::after {
  display: none;
  content: none;
}

.guide-page .food-card-cta-panel.is-compact .food-card-cta-content {
  position: relative;
  z-index: 2;
  gap: 0.7rem;
}

.guide-page .food-card-cta-panel.is-compact h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--color-food) !important;
  background: transparent !important;
  font-size: clamp(1.6rem, 4.5vw, 2.35rem) !important;
  line-height: 1 !important;
}

.guide-page .food-card-cta-panel.is-compact p {
  color: var(--color-text-main) !important;
  font-size: clamp(0.82rem, 1.9vw, 0.94rem) !important;
}

.guide-page .food-card-cta-panel.is-compact .food-card-benefits {
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.guide-page .food-card-cta-panel.is-compact .food-card-benefits span {
  padding: 0.25rem 0.4rem;
  white-space: nowrap;
  font-size: clamp(0.56rem, 1.4vw, 0.68rem);
}

.guide-page .food-card-cta-panel.is-compact .section-actions {
  width: min(84%, 28rem);
  justify-items: center;
}

.guide-page .food-card-cta-panel.is-compact .button.primary {
  width: 100%;
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-food);
  box-shadow: none;
  font-size: clamp(0.94rem, 2.2vw, 1.08rem);
}

.guide-page .food-card-cta-panel.is-compact .food-card-deco {
  max-width: 100%;
  opacity: 0.82;
  filter: drop-shadow(0 3px 3px rgba(31, 41, 51, 0.16));
}

.guide-page .food-card-cta-panel.is-compact .food-card-deco-cow {
  top: 0.4rem;
  right: -5.6rem;
  bottom: auto;
  left: auto;
  width: 8.5rem;
  height: auto;
  object-fit: contain;
}

.guide-page .food-card-cta-panel.is-compact .food-card-deco-wheat {
  bottom: 2.7rem;
  left: 0.3rem;
  width: 2.7rem;
}

.guide-page .food-card-cta-panel.is-compact .food-card-deco-milk {
  bottom: 0.15rem;
  left: 0.2rem;
  width: 3.8rem;
}

.guide-page .related-guides-section > p {
  margin-bottom: 1rem;
  color: var(--color-text-sub) !important;
}

.guide-page .related-guide-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.75rem !important;
  margin: 0 !important;
}

.guide-page .related-guide-card {
  position: relative;
  min-height: 70px;
  display: flex !important;
  align-items: center;
  padding: 0.9rem 2.8rem 0.9rem 1.4rem !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--color-card-bg) !important;
  box-shadow: 0 3px 10px rgba(31, 41, 51, 0.035) !important;
}

.guide-page .related-guide-card::before {
  content: "→";
  position: absolute;
  left: 0.45rem;
  color: var(--guide-accent);
  font-weight: 800;
}

.guide-page .related-guide-card::after {
  content: "›";
  position: absolute;
  right: 1rem;
  color: var(--color-text-sub);
  font-size: 1.25rem;
}

.guide-page .related-guide-card h3 {
  margin: 0 !important;
  color: var(--color-text-main) !important;
  font-size: clamp(1rem, 2.4vw, 1.15rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

.guide-page .related-guides-section .section-actions {
  justify-content: flex-start;
  margin-top: 1.2rem;
}

.guide-page .related-guides-section .button.secondary {
  min-height: 2.5rem;
  padding-inline: 1rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #a7a1b8;
  box-shadow: none;
}

.guide-page .side-panel {
  display: none !important;
}

body:has(.guide-page) .site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.6rem 1rem calc(1.6rem + 5.75rem + env(safe-area-inset-bottom));
  color: #74717a;
  background: #e4e2e6;
  font-size: 0.82rem;
  line-height: 1.5;
}

body:has(.guide-page) .site-footer strong {
  color: var(--color-text-main);
}

body:has(.guide-page) .site-footer p {
  max-width: 58ch;
  margin: 0.45rem 0 0;
  line-height: 1.5;
}

@media (max-width: 620px) {
  .guide-page {
    padding-top: 0.75rem !important;
  }

  .guide-page .guide-page-header h1 {
    font-size: clamp(2rem, 9.4vw, 2.9rem) !important;
  }

  .guide-page .guide-intro-card {
    gap: 0.6rem;
    padding: 0.75rem !important;
  }

  .guide-page .guide-intro-icon {
    width: 5rem !important;
    height: 5rem !important;
    flex-basis: 5rem;
  }

  .guide-page .guide-intro-card p {
    font-size: 0.8rem !important;
  }

  .guide-page .communication-section {
    margin-inline: -0.4rem !important;
    padding-inline: 0.4rem !important;
  }

  .guide-page .food-card-cta-panel.is-compact .food-card-benefits span {
    font-size: 0.56rem;
  }
}

/* Guide spacing and phrase separators. */
body:has(.guide-page),
body:has(.guide-page) main {
  background: var(--color-page-bg) !important;
}

.guide-page {
  padding-bottom: 1rem !important;
}

.guide-page .first-move-box {
  padding-left: 0 !important;
}

.guide-page .first-move-box::before {
  display: none !important;
  content: none !important;
}

.guide-page .communication-section {
  padding-inline: clamp(1.25rem, 3vw, 2rem) !important;
}

.guide-page .phrase .meaning,
.guide-page .staff-phrase .meaning {
  margin-bottom: 0.1rem !important;
  padding-bottom: 0.65rem !important;
  border-bottom: 1px solid rgba(31, 41, 51, 0.14) !important;
}

.guide-page .related-guide-card::before {
  display: none !important;
  content: none !important;
}

.guide-page .related-guide-card::after {
  content: "→" !important;
  right: 1rem !important;
  color: #d82f3f !important;
  font-size: 0.95rem !important;
  font-weight: 800;
}

.guide-page .related-guide-card {
  padding-left: 1rem !important;
}

.guide-page .related-guides-section {
  padding-bottom: 0.5rem !important;
}

.guide-page .related-guides-section .section-actions {
  margin-top: 0.85rem !important;
}

.guide-page .related-guides-section .button.secondary {
  min-height: 1.9rem !important;
  padding: 0.32rem 0.75rem !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
}

@media (max-width: 620px) {
  .guide-page .communication-section {
    margin-inline: 0 !important;
    padding-inline: clamp(0.85rem, 4vw, 1rem) !important;
  }

  .guide-page .steps-section .guide-section-title,
  .guide-page .dont-section .guide-section-title,
  .guide-page .food-guide-cta > h2 {
    margin-left: -0.6rem !important;
  }

  .guide-page .related-guides-section {
    padding-bottom: 0.25rem !important;
  }
}

/* Use exactly the same neutral page gray on TOP and guide routes. */
body:has(.home-page),
body:has(.home-page) main,
body:has(.guide-page),
body:has(.guide-page) main,
.guide-page {
  background: var(--color-page-bg) !important;
  background-image: none !important;
}

body:has(.guide-page)::after {
  display: none !important;
  content: none !important;
}

/* Match the guide canvas to the TOP page's rendered neutral gray. */
body:has(.guide-page),
body:has(.guide-page) main,
body:has(.guide-page) .guide-page {
  background-color: #f2f1f2 !important;
}

/* Give the opening First Move heading the same airy rhythm as the TOP typography. */
.guide-page .first-move-box .guide-section-title {
  letter-spacing: 0.025em !important;
  word-spacing: 0.08em !important;
}

.guide-page .first-move-box .colorful-first {
  display: inline-flex;
  gap: 0.025em;
  margin-right: 0.08em;
}

/* Keep typography consistent across TOP and guide templates. */
body,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
.panel-kicker,
.choice-button span:first-child,
.need-card strong {
  font-family: var(--font-display) !important;
}

/* Add a little breathing room to headings after the typeface unification. */
.home-page h2,
.home-page h3,
.guide-page h1,
.guide-page h2,
.guide-page h3 {
  letter-spacing: 0.012em !important;
}

/* Keep the Food Card label ribbon-like with a crisp notch at the right edge. */
.home-page .food-card-ribbon,
.guide-page .food-card-ribbon {
  padding-right: 1.7rem !important;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.72rem) 50%, 100% 100%, 0 100%);
}

/* Solid CSS arrows stay visually consistent regardless of the active font. */
.home-page .quick-phrase-card::after,
.guide-page .related-guide-card::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 1rem !important;
  width: 0.9rem !important;
  height: 0.64rem !important;
  background: #d82f3f !important;
  clip-path: polygon(0 37%, 58% 37%, 58% 0, 100% 50%, 58% 100%, 58% 63%, 0 63%);
  transform: translateY(-50%) !important;
}

/* Refine type rhythm and spacing after adopting Bricolage Grotesque. */
.home-page .finder-header h2,
.home-page .finder-group-header h3,
.home-page .categories-section .section-header h2,
.home-page .quick-phrases-section .section-header h2,
.home-page .category-card h3,
.guide-page .guide-section-title,
.guide-page .steps-section .guide-section-title,
.guide-page .dont-section .guide-section-title,
.guide-page .food-guide-cta > h2,
.guide-page .related-guides-section > h2 {
  letter-spacing: 0.015em !important;
}

/* Keep the guide count close to its category description. */
.home-page .category-card {
  gap: 0.38rem !important;
}

.home-page .category-card .category-chip {
  margin-top: 0.18rem !important;
}

/* Strengthen the opening move without changing the surrounding section. */
.guide-page .first-move-box .guide-section-title {
  font-size: clamp(2.3rem, 6.75vw, 3.4rem) !important;
}

/* Scale communication icons independently and align the intro with the title text. */
.guide-page .say-show-section {
  --communication-icon-size: clamp(5rem, 12vw, 7rem);
}

.guide-page .staff-section {
  --communication-icon-size: clamp(3rem, 7.2vw, 4.2rem);
}

.guide-page .say-show-section .guide-section-title.has-icon img,
.guide-page .staff-section .guide-section-title.has-icon img {
  width: var(--communication-icon-size) !important;
  height: var(--communication-icon-size) !important;
  flex: 0 0 var(--communication-icon-size) !important;
}

.guide-page .say-show-section .section-intro {
  margin-left: calc(var(--communication-icon-size) + 0.65rem) !important;
}

/* Make the food-needs band fit its wording instead of spanning the row. */
.guide-page .food-guide-cta > h2 {
  width: fit-content !important;
  max-width: calc(100% + 0.6rem) !important;
}

/* Use the same solid arrow language for the Food Card sample link. */
.food-card-sample-link::before {
  content: "" !important;
  display: inline-block;
  width: 0.82rem;
  height: 0.58rem;
  margin-right: 0.55rem;
  background: var(--color-food);
  clip-path: polygon(0 37%, 58% 37%, 58% 0, 100% 50%, 58% 100%, 58% 63%, 0 63%);
}

/* Lighten supporting copy while keeping action text prominent. */
.guide-page .dont-item p {
  font-size: clamp(0.82rem, 1.9vw, 0.94rem) !important;
  font-weight: 450 !important;
}

.guide-page .say-show-section .section-intro,
.guide-page #stuck > p,
.guide-page #culture > p,
.guide-page .food-guide-cta > p,
.guide-page .related-guides-section > p {
  font-weight: 450 !important;
}

/* Communication headings: icon left, title and supporting copy together on the right. */
.guide-page .communication-heading {
  display: grid;
  grid-template-columns: var(--communication-icon-size) minmax(0, 1fr);
  align-items: center;
  column-gap: 0.65rem;
  margin-bottom: clamp(0.9rem, 2.5vw, 1.2rem);
}

.guide-page .communication-heading-icon {
  display: block;
  width: var(--communication-icon-size);
  height: var(--communication-icon-size);
  object-fit: contain;
}

.guide-page .communication-heading-copy {
  min-width: 0;
}

.guide-page .communication-heading-copy .guide-section-title {
  margin: 0 !important;
}

.guide-page .communication-heading-copy .section-intro {
  margin: 0.3rem 0 0 !important;
}

/* Fine-tune guide emphasis after the communication-header layout pass. */
.guide-page .first-move-box .guide-section-title {
  font-size: clamp(1.84rem, 5.4vw, 2.72rem) !important;
}

.guide-page .say-show-section .phrase .jp,
.guide-page .staff-section .staff-phrase .jp {
  font-weight: 650 !important;
}

.guide-page .phrase-helper {
  margin: 0.25rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid color-mix(in srgb, var(--guide-accent) 22%, transparent);
  color: var(--color-text-sub);
  font-size: 0.82rem;
  line-height: 1.45;
}

.guide-page .phrase-example {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.15rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--guide-accent) 7%, #fff);
}

.guide-page .phrase-example-label {
  width: fit-content;
  color: var(--guide-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-page .phrase-example .jp {
  font-size: clamp(1.08rem, 3.6vw, 1.45rem) !important;
}

.guide-page .phrase-example .romaji {
  font-size: clamp(0.78rem, 1.8vw, 0.9rem) !important;
}

/* One shared Food Card presentation for TOP and guide routes. */
.home-page .shared-food-card-cta,
.guide-page .shared-food-card-cta {
  overflow: hidden;
  margin-top: 0.65rem;
}

.home-page .shared-food-card-cta .food-card-ribbon,
.guide-page .shared-food-card-cta .food-card-ribbon {
  top: 0.55rem;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: 76%;
  padding: 0.7rem 1.7rem 0.7rem 1rem !important;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(31, 41, 51, 0.08);
}

.home-page .shared-food-card-cta .food-card-deco,
.guide-page .shared-food-card-cta .food-card-deco {
  max-width: 100%;
  opacity: 0.98;
  filter:
    drop-shadow(0 5px 5px rgba(31, 41, 51, 0.3))
    drop-shadow(0 1px 1px rgba(31, 41, 51, 0.18));
}

.home-page .shared-food-card-cta .food-card-deco-cow,
.guide-page .shared-food-card-cta .food-card-deco-cow {
  top: 0.4rem;
  right: clamp(-8.2rem, -14vw, -5.4rem);
  bottom: auto;
  left: auto;
  width: clamp(10rem, 24vw, 14rem);
  height: auto;
  max-width: none;
  object-fit: contain;
}

.home-page .shared-food-card-cta .food-card-deco-wheat,
.guide-page .shared-food-card-cta .food-card-deco-wheat {
  bottom: 3.6rem;
  left: 0.45rem;
  width: clamp(2.7rem, 5.4vw, 3.8rem);
}

.home-page .shared-food-card-cta .food-card-deco-milk,
.guide-page .shared-food-card-cta .food-card-deco-milk {
  bottom: 0.2rem;
  left: 0.35rem;
  width: clamp(3.7rem, 7.5vw, 5.4rem);
}

.home-page .shared-food-card-cta .food-card-benefits,
.guide-page .shared-food-card-cta .food-card-benefits {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.3rem, 1.2vw, 0.6rem);
}

.home-page .shared-food-card-cta .food-card-benefits span,
.guide-page .shared-food-card-cta .food-card-benefits span {
  flex: 0 1 auto;
  white-space: nowrap;
}

.home-page .shared-food-card-cta .section-actions,
.guide-page .shared-food-card-cta .section-actions {
  width: min(86%, 31rem);
  justify-items: center;
}

.home-page .shared-food-card-cta .button.primary,
.guide-page .shared-food-card-cta .button.primary {
  width: 100%;
  font-size: clamp(20px, 5.286vw, 48px);
}

/* Keep the guide footer visually light while reserving room for fixed navigation. */
body:has(.guide-page) .site-footer {
  gap: 1.2rem;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) calc(2rem + 5.75rem + env(safe-area-inset-bottom));
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .home-page .shared-food-card-cta .food-card-deco-cow,
  .guide-page .shared-food-card-cta .food-card-deco-cow {
    right: -6.2rem;
    width: 12rem;
  }

  .home-page .shared-food-card-cta .food-card-deco-wheat,
  .guide-page .shared-food-card-cta .food-card-deco-wheat {
    bottom: 3.2rem;
    width: 3.5rem;
  }

  .home-page .shared-food-card-cta .food-card-deco-milk,
  .guide-page .shared-food-card-cta .food-card-deco-milk {
    width: 4.5rem;
  }
}

/* Shared lightweight footer treatment for TOP and guide routes. */
body:has(.home-page),
body:has(.guide-page) {
  padding-bottom: 0 !important;
}

body:has(.home-page) .site-footer,
body:has(.guide-page) .site-footer {
  gap: 0.75rem;
  padding: 1.25rem 1rem calc(4.75rem + env(safe-area-inset-bottom)) !important;
  color: #6b7280 !important;
  font-size: 0.82rem;
  font-weight: 400 !important;
  line-height: 1.5;
}

body:has(.home-page) .site-footer strong,
body:has(.guide-page) .site-footer strong {
  color: #5f6670 !important;
  font-weight: 500 !important;
}

body:has(.home-page) .site-footer p,
body:has(.guide-page) .site-footer p {
  margin: 0.25rem 0 0 !important;
  color: #6b7280 !important;
  font-weight: 400 !important;
}

/* Balance category-card spacing without leaving an empty area below the guide count. */
.home-page .category-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 1rem 0.95rem 0.78rem !important;
  gap: 0.32rem !important;
}

.home-page .category-card .category-chip {
  margin-top: 0.58rem !important;
}

/* Food Card index: samples first, custom creation second, safety note always visible. */
.food-card-page .food-card-first-move {
  margin: 0.4rem 0 clamp(1.6rem, 4vw, 2.5rem);
  padding: 0.9rem 0 0.9rem 1rem;
  border-left: 4px solid var(--color-food);
}

.food-card-page .food-card-first-move h2 {
  margin: 0 0 0.55rem;
  color: var(--color-food);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.05;
}

.food-card-page .food-card-first-move p {
  max-width: 64ch;
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(0.94rem, 2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
}

.food-card-page .food-card-first-move strong {
  font-weight: 750;
}

.food-card-page .food-samples {
  padding-top: 0;
}

.food-card-page .food-samples .section-header {
  margin-bottom: 1rem;
}

.food-card-meta-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-food);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.food-card-page .food-card-note {
  font-weight: 500;
  line-height: 1.45;
}

.food-card-builder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  padding: clamp(1.2rem, 3.5vw, 2rem);
  border: 1px solid var(--color-food-soft);
  border-radius: 16px;
  background: var(--color-card-bg);
  box-shadow: 0 4px 12px rgba(31, 41, 51, 0.04);
}

.food-card-builder-panel h2 {
  margin: 0;
  color: var(--color-food);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1.05;
}

.food-card-builder-panel p {
  max-width: 58ch;
  margin: 0.55rem 0 0;
  color: var(--color-text-main);
  font-weight: 500;
  line-height: 1.5;
}

.food-card-builder-panel .food-card-builder-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 750;
}

.food-card-builder-panel .food-card-benefits {
  justify-content: flex-start;
  margin-top: 0.9rem;
}

.food-card-builder-panel > .button,
.food-card-builder-panel > .section-actions .button {
  min-width: 10rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-food);
  box-shadow: none;
}

.food-card-page .disclaimer-box,
.food-detail-page .disclaimer-box {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: none;
}

@media (max-width: 620px) {
  .food-card-builder-panel {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }

  .food-card-builder-panel > .button,
  .food-card-builder-panel > .section-actions,
  .food-card-builder-panel > .section-actions .button {
    width: 100%;
  }

  .food-card-page .food-card-benefits {
    flex-wrap: wrap;
  }
}

/* Lightweight sample-card hub: selection first, full content on detail routes. */
.food-card-page .food-sample-card {
  align-content: start;
  gap: 0.6rem;
  min-height: 0;
  padding: 1rem;
  border-radius: 14px;
  background: var(--color-card-bg);
  box-shadow: 0 3px 10px rgba(31, 41, 51, 0.045);
}

.food-card-page .food-sample-card h3 {
  margin: 0;
  color: var(--color-food);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.1;
}

.food-card-page .food-list-preview {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 650;
  line-height: 1.4;
}

.food-card-page .food-card-list-description {
  margin: 0;
  color: var(--color-text-sub);
  font-size: clamp(0.86rem, 1.9vw, 0.96rem);
  font-weight: 450;
  line-height: 1.45;
}

.food-card-page .food-card-view-link {
  width: fit-content;
  margin-top: 0.2rem;
  color: var(--color-food);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
}

.food-card-page .food-sample-card:hover .food-card-view-link,
.food-card-page .food-sample-card:focus-visible .food-card-view-link {
  text-decoration: underline;
}

/* Food Card detail: keep the show-first card prominent without turning it into a full-screen panel. */
.food-detail-page .big-show-card {
  gap: 0.8rem;
  min-height: min(52vh, 32rem);
  padding: clamp(1rem, 3.5vw, 1.7rem);
  border-radius: 16px;
  box-shadow:
    inset 0 8px 0 var(--red),
    0 5px 14px rgba(31, 41, 51, 0.07);
}

.food-detail-page .big-show-card .jp {
  max-width: 24ch;
  font-size: clamp(1.75rem, 6.8vw, 3.5rem);
  line-height: 1.38;
}

.food-detail-page .big-show-card .jp.has-fixed-lines {
  width: 100%;
  max-width: none;
  font-size: clamp(1.25rem, 5.2vw, 1.9rem);
  font-weight: 650;
  line-height: 1.45;
}

.food-detail-page .big-show-card .food-card-line,
.food-detail-page .big-show-card .food-card-line-spacer {
  display: block;
}

.food-detail-page .big-show-card .jp.has-fixed-lines .food-card-line {
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.food-detail-page .big-show-card .food-card-line-spacer {
  height: 0.75em;
}

.food-detail-page .big-show-card .food-card-allergen-label {
  margin-bottom: 0.28rem;
  line-height: 1.35;
}

.food-detail-page .big-show-card .food-card-allergen-value {
  font-size: inherit;
  line-height: inherit;
}

.food-detail-page .staff-response-panel {
  margin-top: 1rem;
  padding: clamp(0.9rem, 2.5vw, 1.2rem);
  border: 1px solid var(--color-food-soft);
  border-radius: 14px;
  background: var(--color-card-bg);
}

.food-detail-page .staff-response-heading {
  margin-bottom: 0.8rem;
}

.food-detail-page .staff-response-heading h2 {
  margin: 0;
  color: var(--color-food);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.1;
}

.food-detail-page .staff-response-heading p {
  margin: 0.25rem 0 0;
  color: var(--color-text-sub);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 500;
}

.food-detail-page .staff-response-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.food-detail-page .staff-response-option {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-height: 5.5rem;
  padding: 0.7rem 0.45rem;
  border: 1px solid var(--color-food-soft);
  border-radius: 10px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.food-detail-page .staff-response-option::before {
  position: absolute;
  z-index: 0;
  inset: 50% auto auto 50%;
  color: rgba(224, 125, 153, 0.15);
  font-size: clamp(4.25rem, 12vw, 7rem);
  font-weight: 500;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.food-detail-page .staff-response-option:nth-child(1)::before {
  content: "";
  width: clamp(2.6rem, 6.65vw, 3.8rem);
  height: clamp(2.6rem, 6.65vw, 3.8rem);
  border: clamp(0.75rem, 2vw, 1.1rem) solid rgba(224, 125, 153, 0.15);
  border-radius: 50%;
}

.food-detail-page .staff-response-option:nth-child(2)::before {
  content: "×";
  font-size: clamp(10.15rem, 26.5vw, 14.7rem);
  font-weight: 500;
}

.food-detail-page .staff-response-option:nth-child(3)::before {
  content: "?";
  font-size: clamp(5.85rem, 15.3vw, 9rem);
  font-weight: 650;
}

.food-detail-page .staff-response-option strong {
  position: relative;
  z-index: 1;
  color: var(--color-text-main);
  font-size: clamp(0.86rem, 2vw, 1rem);
  line-height: 1.15;
}

.food-detail-page .staff-response-option span {
  position: relative;
  z-index: 1;
  color: var(--color-text-main);
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  font-weight: 600;
  line-height: 1.25;
}

.food-detail-page .food-detail-info > div {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(31, 41, 51, 0.035);
}

.food-detail-page .food-detail-info .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.food-detail-page .food-detail-info > div > p:last-child {
  color: var(--color-text-main);
  font-weight: 450;
  line-height: 1.5;
}

.food-detail-page .food-detail-safety {
  border-left: 4px solid var(--color-food);
  box-shadow: none;
}

.food-detail-page .disclaimer-box {
  background: #fff4f6;
  box-shadow: none !important;
}

.food-detail-page .food-detail-upgrade {
  box-shadow: 0 3px 10px rgba(31, 41, 51, 0.04);
}

@media (max-width: 620px) {
  .food-detail-page .big-show-card {
    min-height: clamp(20rem, 46vh, 25rem);
    padding: 1rem 0.35rem;
  }

  .food-detail-page .big-show-card .jp {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
  }

  .food-detail-page .big-show-card .jp.has-fixed-lines {
    font-size: clamp(1.25rem, 5.2vw, 1.5rem);
  }

  .food-detail-page .staff-response-grid {
    gap: 0.4rem;
  }

  .food-detail-page .staff-response-option {
    min-height: 5.25rem;
    padding-inline: 0.3rem;
  }
}

/* Unified detail notes: white explanation area with a soft-pink safety note below. */
.food-detail-page .food-detail-notes {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-card-bg);
  box-shadow: 0 5px 14px rgba(31, 41, 51, 0.055);
}

.food-detail-page .food-detail-notes .food-detail-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3.5vw, 2rem);
  margin: 0;
  padding: clamp(1.2rem, 3.5vw, 1.8rem);
  background: var(--color-card-bg);
}

.food-detail-page .food-detail-notes .food-detail-info > div {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.food-detail-page .food-detail-notes .food-detail-safety {
  border-left: 0;
}

.food-detail-page .food-detail-notes .eyebrow {
  margin: 0 0 0.45rem;
  color: var(--color-food);
  font-size: clamp(0.92rem, 2.2vw, 1.08rem);
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.food-detail-page .food-detail-notes .food-detail-info > div > p:last-child {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 450;
  line-height: 1.45;
}

.food-detail-page .food-detail-notes .disclaimer-box {
  gap: 0.85rem;
  margin: 0;
  padding: clamp(1.2rem, 3.5vw, 1.8rem);
  border: 0;
  border-radius: 0;
  color: var(--color-text-main);
  background: #fff0f4;
  box-shadow: none !important;
}

.food-detail-page .food-detail-notes .disclaimer-box h2 {
  margin: 0;
  color: var(--color-food);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.05;
}

.food-detail-page .food-detail-notes .disclaimer-box p {
  color: var(--color-text-main);
  font-size: clamp(0.94rem, 2.3vw, 1.08rem);
  font-weight: 650;
  line-height: 1.5;
}

.food-detail-page .food-detail-notes .disclaimer-box .jp {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 600;
}

/* Reference-aligned show card: soft, bordered and readable at a glance. */
.food-detail-page .big-show-card {
  min-height: 0;
  gap: clamp(1.15rem, 3vw, 1.65rem);
  padding: clamp(1.8rem, 5vw, 2.6rem) clamp(0.45rem, 2vw, 0.9rem) clamp(2rem, 5.5vw, 2.9rem);
  border: 8px solid #fff;
  border-radius: 24px;
  background: #f8e0e8;
  background: color-mix(in srgb, var(--color-food) 24%, #fff);
  box-shadow: 0 6px 18px rgba(31, 41, 51, 0.08);
}

.food-detail-page .big-show-card > span {
  align-self: center;
  width: fit-content;
  padding-bottom: 0.18rem;
  border-bottom: 2px solid #fff;
  color: var(--color-food);
  font-size: clamp(1.05rem, 3.2vw, 1.4rem);
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: none;
}

.food-detail-page .big-show-card .jp.has-fixed-lines {
  color: var(--color-text-main);
  font-size: clamp(1.2rem, 5vw, 1.75rem);
  font-weight: 650;
  line-height: 1.58;
}

.food-detail-page .food-detail-info .eyebrow::before {
  display: none !important;
  content: none !important;
}

.food-detail-page .food-detail-info .eyebrow {
  padding: 0;
  background: transparent;
}

.food-detail-page .food-detail-info > div {
  padding: clamp(0.9rem, 2.5vw, 1.2rem);
  box-shadow: none;
}

.food-detail-page .disclaimer-box {
  border-radius: 14px;
}

.food-detail-page .food-detail-upgrade {
  padding: clamp(1rem, 2.8vw, 1.35rem);
  box-shadow: none;
}

.food-detail-page > .section-actions {
  margin-top: 1rem;
}

.food-detail-page > .section-actions .button.secondary {
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  box-shadow: none;
  font-size: 0.85rem;
}

@media (max-width: 620px) {
  .food-detail-page .big-show-card {
    min-height: 0;
    gap: 1.2rem;
    padding: 1.7rem 0.35rem 2rem;
    border-width: 7px;
  }

  .food-detail-page .big-show-card .jp.has-fixed-lines {
    font-size: clamp(1.16rem, 4.9vw, 1.38rem);
  }

  .food-detail-page .staff-response-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .food-detail-page .staff-response-option {
    min-height: 5.75rem;
    padding: 0.75rem 0.55rem;
  }

  .food-detail-page .staff-response-option:last-child {
    grid-column: 1 / -1;
  }

  .food-detail-page .staff-response-option strong {
    font-size: 0.9rem;
  }

  .food-detail-page .staff-response-option span {
    font-size: 1.08rem;
  }
}

/* Final Severe allergy card emphasis: ingredient highlight and calm closing note. */
.food-detail-page .big-show-card .jp.has-fixed-lines .food-card-allergen-value {
  color: #d33f69;
}

.food-detail-page .big-show-card .jp.has-fixed-lines .food-card-closing-line {
  font-size: 0.7em;
  line-height: 1.55;
}

.food-detail-page .big-show-card .jp.has-fixed-lines .food-card-closing-start {
  margin-top: 0.65rem;
}

.food-detail-page .big-show-card {
  gap: clamp(1.65rem, 4vw, 2.2rem);
  padding-top: clamp(1.3rem, 3.5vw, 1.8rem);
}

@media (max-width: 620px) {
  .food-detail-page .big-show-card {
    gap: 1.8rem;
    padding-top: 1.3rem;
  }
}

/* Shared page-width system. Keep page containers on one 880px rail. */
.layout-container,
.content-container,
.card-container,
.page-shell.layout-container,
.home-page > .layout-container,
.home-page > .content-container,
.home-page > .card-container {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.page-shell.layout-container .content-container,
.page-shell.layout-container .card-container {
  width: 100%;
  max-width: 100%;
}

.home-page .poster-cover {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.guide-page .article-card {
  width: 100%;
  max-width: none;
}

.guide-page .communication-section {
  padding-right: clamp(1.25rem, 3vw, 2rem) !important;
  padding-left: clamp(1.25rem, 3vw, 2rem) !important;
}

.food-card-page > .disclaimer-box {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 640px) {
  .layout-container,
  .content-container,
  .card-container,
  .page-shell.layout-container,
  .home-page > .layout-container,
  .home-page > .content-container,
  .home-page > .card-container {
    width: min(calc(100% - var(--content-gutter-mobile)), var(--content-max));
  }

  .page-shell.layout-container .content-container,
  .page-shell.layout-container .card-container {
    width: 100%;
  }
}

/* Legal pages and understated legal links. */
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-top: 0.75rem;
}

body:has(#app) .site-footer .site-footer-legal a {
  color: #555e69;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(85, 94, 105, 0.35);
  text-underline-offset: 0.18em;
}

.custom-digital-product-note {
  margin: 0;
  color: var(--color-text-sub, #69717b);
  font-size: 0.75rem;
  line-height: 1.4;
}

.custom-payment-placeholder .custom-digital-product-note {
  padding-top: 0.45rem;
  border-top: 1px solid rgba(143, 69, 95, 0.12);
}

.custom-terms-copy a {
  color: #8f455f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(143, 69, 95, 0.35);
  text-underline-offset: 0.16em;
}

.legal-page {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.legal-page-header,
.legal-page-content {
  max-width: 760px;
  margin-inline: auto;
}

.legal-page-header {
  padding-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.legal-page-header h1 {
  margin: 1rem 0 0;
  color: #202936;
  font-size: clamp(2.35rem, 7vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-page-updated {
  margin: 0.8rem 0 0;
  color: #69717b;
  font-size: 0.9rem;
}

.legal-page-content {
  color: #303947;
  font-size: 1rem;
  line-height: 1.78;
}

.legal-page-content > p:first-child {
  margin-top: 0;
}

.legal-page-content p {
  margin: 0.85rem 0 0;
}

.legal-section {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid rgba(74, 90, 117, 0.16);
}

.legal-section h2 {
  margin: 0;
  color: #4a5a75;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-section ul {
  margin: 0.9rem 0 0;
  padding-left: 1.35rem;
}

.legal-section li + li {
  margin-top: 0.55rem;
}

.legal-notice-subtitle {
  max-width: 650px;
  margin: 1rem 0 0;
  color: #4a5a75;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.55;
}

.legal-notice-japanese {
  margin: 0.35rem 0 0;
  color: #69717b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-notice-draft-note {
  max-width: 650px;
  margin: 1rem 0 0;
  padding: 0.7rem 0.85rem;
  border-left: 3px solid rgba(224, 125, 153, 0.6);
  color: #69717b;
  background: rgba(224, 125, 153, 0.06);
  font-size: 0.82rem;
  line-height: 1.55;
}

.legal-notice-content {
  max-width: 760px;
  margin-inline: auto;
}

.legal-notice-list {
  margin: 0;
  border-top: 1px solid rgba(74, 90, 117, 0.16);
}

.legal-notice-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(74, 90, 117, 0.12);
}

.legal-notice-row dt {
  color: #4a5a75;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.legal-notice-row dd {
  min-width: 0;
  margin: 0;
  color: #303947;
  font-size: 0.95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.faq-page-lead {
  max-width: 650px;
  margin: 1rem 0 0;
  color: #69717b;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-page,
.faq-list,
.faq-category,
.faq-category-items,
.faq-item,
.faq-question,
.faq-answer {
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: clamp(2.4rem, 6vw, 3.5rem);
}

.faq-category > h2 {
  margin: 0 0 0.45rem;
  color: #4a5a75;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.faq-category-items {
  border-top: 1px solid rgba(74, 90, 117, 0.15);
}

.faq-item {
  padding: clamp(1.15rem, 3vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(74, 90, 117, 0.12);
}

.faq-question,
.faq-answer {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
}

.faq-answer {
  margin-top: 0.75rem;
}

.faq-label {
  display: block;
  padding-top: 0.02em;
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.faq-label-question {
  color: #e07d99;
}

.faq-label-answer {
  color: #699bc8;
}

.faq-question h3 {
  margin: 0;
  color: #303947;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.faq-answer p {
  min-width: 0;
  margin: 0;
  color: #303947;
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .legal-page {
    padding-block: 1.4rem 2.5rem;
  }

  .legal-page-header h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .legal-page-content {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .legal-notice-subtitle {
    font-size: 1rem;
  }

  .legal-notice-draft-note {
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
  }

  .legal-notice-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1rem 0;
  }

  .legal-notice-row dt,
  .legal-notice-row dd {
    font-size: 0.92rem;
  }

  .faq-page-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .faq-list {
    gap: 2.25rem;
  }

  .faq-category > h2 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
  }

  .faq-item {
    padding: 1.05rem 0;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.5rem;
  }

  .faq-label {
    font-size: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .faq-answer p {
    font-size: 0.93rem;
    line-height: 1.65;
  }
}

/* A lightweight shared footer aligned with the site's common content width. */
body:has(#app) .site-footer {
  display: block;
  margin-top: 0;
  padding: 0 !important;
  border-top: 0;
  color: #69717b !important;
  background: #e9e7eb;
  font-size: 0.84rem;
  font-weight: 400 !important;
  line-height: 1.55;
}

.site-footer-inner {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
  padding: 1.5rem 0 calc(5.25rem + env(safe-area-inset-bottom));
}

body:has(#app) .site-footer strong {
  color: #555e69 !important;
  font-size: 1rem;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

body:has(#app) .site-footer p {
  max-width: none;
  margin: 0.3rem 0 0 !important;
  color: #69717b !important;
  font-weight: 400 !important;
  line-height: 1.55;
}

body:has(#app) .site-footer .site-footer-note {
  margin-top: 0 !important;
}

@media (max-width: 620px) {
  body:has(#app) .site-footer {
    margin-top: 0;
    font-size: 0.8rem;
  }

  .site-footer-inner {
    width: min(calc(100% - var(--content-gutter-mobile)), var(--content-max));
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem 0 calc(5.1rem + env(safe-area-inset-bottom));
  }
}

.home-page .quick-phrases-section {
  padding-bottom: 0 !important;
}

@media (max-width: 620px) {
  .home-page .quick-phrases-section {
    padding-bottom: 1.25rem !important;
  }
}

/* Desktop-only TOP refinements. Mobile keeps the existing composition. */
.home-page .hero-title .hero-title-line {
  display: flex !important;
  align-items: baseline;
  max-width: none !important;
  white-space: nowrap;
}

.home-page .hero-title .hero-title-line-first {
  gap: 0.1em;
}

.home-page .hero-title .hero-title-your {
  display: inline !important;
  max-width: none !important;
}

@media (min-width: 621px) {
  .home-page .poster-cover {
    display: block !important;
    height: 560px;
    min-height: 560px !important;
    padding: 2.5rem;
  }

  .home-page .poster-cover .hero-title {
    display: block !important;
    width: min(100%, 38rem);
    max-width: 38rem;
    margin: 0 !important;
    padding: 0;
    font-size: 4.75rem;
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-align: left;
  }

  .home-page .hero-title-line-first {
    gap: 0.12em;
  }

  .home-page .poster-cover .lead {
    display: block;
    width: min(100%, 29rem);
    max-width: 29rem;
    margin: 0.85rem 0 0 !important;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
  }

  .home-page .hero-visual-img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: right bottom !important;
    transform: none !important;
  }

  .home-page .finder-panel .need-card .need-card-copy strong {
    color: var(--color-text-main) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
  }

  .home-page .finder-panel .need-card .need-card-copy strong > span {
    display: inline !important;
    font: inherit !important;
    letter-spacing: inherit !important;
  }

  .home-page .finder-panel .need-card .need-card-copy > span {
    color: var(--color-text-sub) !important;
    font-size: 0.8125rem !important;
    font-weight: 650 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
  }

  .home-page .quick-phrase-card {
    min-height: 108px;
    gap: 0.55rem;
    padding: 1.3rem 3.25rem 1.3rem 1.25rem;
  }

  .home-page .quick-phrase-card strong {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  .home-page .quick-phrase-card .jp {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
  }
}

@media (min-width: 1024px) {
  .home-page .poster-cover .hero-title {
    font-size: 5.5rem;
    line-height: 0.9;
  }

  .home-page .finder-header h2 {
    font-size: 2.65rem;
    font-weight: 760;
    line-height: 1.02;
  }
}

/* Give the two-line Hero title a calmer reading rhythm at every width. */
.home-page .poster-cover .hero-title {
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
}

.home-page .hero-title .hero-title-word {
  letter-spacing: -0.02em !important;
}

.home-page .hero-title .hero-title-line-first {
  gap: 0.16em;
}

.home-page .hero-title .hero-title-line-second {
  margin-top: 0.12em;
  letter-spacing: -0.01em;
}

/* Quick phrases use the same language-pair rule: English accent, Japanese black. */
.home-page .quick-phrase-card .jp {
  color: var(--color-text-main) !important;
  font-weight: 600 !important;
}

.home-page .quick-phrase-card::after {
  right: 1.15rem !important;
  width: 1.1rem !important;
  height: 0.78rem !important;
  background: #c85b7d !important;
}

/* Keep the TOP Food Card CTA prominent without letting it dominate desktop screens. */
@media (min-width: 761px) {
  .home-page .shared-food-card-cta {
    min-height: 0;
    padding: 3.55rem 3rem 1.9rem;
    border-radius: var(--jfm-card-radius);
  }

  .home-page .shared-food-card-cta .food-card-cta-content {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 18rem;
    grid-template-rows: auto auto auto;
    justify-items: start;
    column-gap: 2rem;
    row-gap: 0.65rem;
    text-align: left;
  }

  .home-page .shared-food-card-cta h2,
  .home-page .shared-food-card-cta p,
  .home-page .shared-food-card-cta .food-card-benefits {
    grid-column: 1;
  }

  .home-page .shared-food-card-cta h2 {
    max-width: 15ch;
    font-size: 2.5rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .home-page .shared-food-card-cta p {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .home-page .shared-food-card-cta .food-card-benefits {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .home-page .shared-food-card-cta .food-card-benefits span {
    padding: 0.3rem 0.52rem;
    font-size: 0.7rem;
  }

  .home-page .shared-food-card-cta .section-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0;
  }

  .home-page .shared-food-card-cta .button.primary {
    min-height: 3.2rem;
    padding: 0.75rem 1rem;
    font-size: 1.08rem;
  }

  .home-page .shared-food-card-cta .food-card-sample-link {
    font-size: 0.88rem;
  }

  .home-page .shared-food-card-cta .food-card-deco-cow {
    right: -5.6rem;
    width: 11rem;
    opacity: 0.98;
  }

  .home-page .shared-food-card-cta .food-card-deco-wheat {
    bottom: 1.45rem;
    width: 3.4rem;
    opacity: 0.98;
  }

  .home-page .shared-food-card-cta .food-card-deco-milk {
    width: 4.4rem;
    opacity: 0.98;
  }

  .home-page .categories-section {
    padding-top: 3.5rem;
  }

  .home-page .categories-section .section-header {
    margin-bottom: 1.1rem;
  }

  .home-page .categories-section .section-header h2 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .home-page .categories-section .section-header > p {
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .home-page .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.85rem 0.75rem;
  }

  .home-page .category-card {
    grid-column: span 2;
    height: 100% !important;
    min-height: 0 !important;
    padding: 1rem 0.9rem 0.85rem !important;
    gap: 0.45rem !important;
    border-radius: var(--jfm-card-radius);
  }

  .home-page .category-card h3 {
    font-size: 1.4rem;
    line-height: 1.05;
  }

  .home-page .category-card p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .home-page .category-card .category-chip {
    margin-top: auto !important;
    padding: 0.25rem 0.5rem;
    font-size: 0.76rem;
  }

  .home-page .quick-phrases-section {
    padding-top: 3.5rem;
  }

  .home-page .quick-phrases-section .section-header {
    margin-bottom: 1.1rem;
  }

  .home-page .quick-phrases-section .section-header h2 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .home-page .quick-phrases-section .section-header > p {
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .home-page .quick-phrase-card::after {
    right: 2rem !important;
    width: 1.25rem !important;
    height: 0.9rem !important;
  }
}

/* Keep the guide Food Card headline prominent on mobile. */
@media (max-width: 620px) {
  .guide-page .shared-food-card-cta h2 {
    max-width: 13ch !important;
    font-size: clamp(2rem, 8.5vw, 2.35rem) !important;
    line-height: 0.98 !important;
  }
}

/* Match the guide Food Card CTA to the compact desktop TOP presentation. */
@media (min-width: 761px) {
  .guide-page .shared-food-card-cta {
    min-height: 0;
    padding: 3.55rem 3rem 1.9rem;
    border-radius: var(--jfm-card-radius);
  }

  .guide-page .shared-food-card-cta .food-card-cta-content {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 18rem;
    grid-template-rows: auto auto auto;
    justify-items: start;
    column-gap: 2rem;
    row-gap: 0.65rem;
    text-align: left;
  }

  .guide-page .shared-food-card-cta h2,
  .guide-page .shared-food-card-cta p,
  .guide-page .shared-food-card-cta .food-card-benefits {
    grid-column: 1;
  }

  .guide-page .shared-food-card-cta h2 {
    max-width: 15ch;
    font-size: 2.5rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .guide-page .shared-food-card-cta p {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .guide-page .shared-food-card-cta .food-card-benefits {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .guide-page .shared-food-card-cta .food-card-benefits span {
    padding: 0.3rem 0.52rem;
    font-size: 0.7rem;
  }

  .guide-page .shared-food-card-cta .section-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0;
  }

  .guide-page .shared-food-card-cta .button.primary {
    min-height: 3.2rem;
    padding: 0.75rem 1rem;
    font-size: 1.08rem;
  }

  .guide-page .shared-food-card-cta .food-card-sample-link {
    font-size: 0.88rem;
  }
}

/* Slightly tighten the desktop guide rhythm without changing mobile. */
@media (min-width: 761px) {
  .guide-page {
    padding-top: 1.62rem !important;
  }

  .guide-page .guide-layout {
    margin-top: 1.62rem !important;
  }

  .guide-page .article-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .guide-page .first-move-box::before {
    top: 2.4rem;
    bottom: 2.4rem;
  }

  .guide-page .communication-section + .communication-section {
    padding-top: 0.68rem !important;
  }

  .guide-page .food-guide-cta {
    padding-top: 2.7rem !important;
  }
}

/* Desktop Food landing: align the category page with the current TOP and guide system. */
@media (min-width: 761px) {
  .food-page {
    color: var(--color-text-main);
    padding-bottom: 5rem;
  }

  .food-page .category-page-header {
    gap: 0;
    padding: 2.25rem 0 2.4rem;
  }

  .food-page .crumbs {
    margin-bottom: 1.4rem;
    color: var(--color-text-sub);
    font-size: 0.82rem;
  }

  .food-page .crumbs a {
    color: var(--color-cat-move);
  }

  .food-page .eyebrow {
    gap: 0;
    margin: 0 0 0.55rem;
    color: #b94b6f;
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .food-page .eyebrow::before {
    display: none;
    content: none;
  }

  .food-page .category-page-header h1 {
    max-width: none;
    color: #111418;
    font-size: 3.65rem;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .food-page .category-page-header .lead {
    max-width: 42rem;
    margin: 0.9rem 0 0;
    color: var(--color-text-sub);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
  }

  .food-page .food-section {
    padding-top: 2.7rem;
  }

  .food-page .food-section + .food-section {
    margin-top: 1.8rem;
  }

  .food-page .section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.25rem;
  }

  .food-page .section-header h2 {
    max-width: 14ch;
    color: var(--color-text-main);
    font-size: 2.45rem;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .food-page .section-header > p {
    margin: 0 0 0.1rem;
    color: var(--color-text-sub);
    font-size: 0.98rem;
    font-weight: 550;
    line-height: 1.45;
  }

  .food-page .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
  }

  .food-page .guide-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem 2.65rem 1.15rem 1.15rem;
    border: 0;
    border-radius: var(--jfm-card-radius);
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .food-page .guide-card::before {
    display: none;
    content: none;
  }

  .food-page .guide-card::after {
    content: "";
    top: 1.2rem;
    right: 1.1rem;
    width: 1rem;
    height: 0.72rem;
    background: #c85b7d;
    clip-path: polygon(0 37%, 58% 37%, 58% 0, 100% 50%, 58% 100%, 58% 63%, 0 63%);
  }

  .food-page .guide-card:hover,
  .food-page .guide-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(31, 41, 51, 0.08);
  }

  .food-page .guide-card .category-chip {
    width: fit-content;
    align-self: flex-start;
    padding: 0.28rem 0.6rem;
    border: 1px solid #efd2db;
    border-radius: 999px;
    color: #b94b6f;
    background: #fff7f9;
    font-size: 0.72rem;
    line-height: 1;
  }

  .food-page .guide-card h3 {
    color: var(--color-text-main);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.015em;
  }

  .food-page .guide-card > div {
    display: grid;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #eee9ed;
  }

  .food-page .guide-card .first-move-label {
    color: #b94b6f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .food-page .guide-card p {
    color: var(--color-text-sub);
    font-size: 0.92rem;
    font-weight: 550;
    line-height: 1.4;
  }

  .food-page .food-phrase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
  }

  .food-page .food-phrase-card {
    min-height: 172px;
    align-content: start;
    gap: 0.6rem;
    padding: 1.15rem;
    border: 0;
    border-radius: 16px;
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .food-page .food-phrase-card h3 {
    color: #b94b6f;
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.25;
  }

  .food-page .food-phrase-card .jp {
    color: var(--color-text-main);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.18;
  }

  .food-page .food-phrase-card > p:last-child {
    color: var(--color-text-sub);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .food-page .food-promo {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    padding: 1.6rem 1.75rem;
    border: 0;
    border-radius: var(--jfm-card-radius);
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .food-page .food-promo h2 {
    color: var(--color-text-main);
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .food-page .food-promo p:not(.eyebrow) {
    max-width: 38rem;
    color: var(--color-text-sub);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .food-page .food-promo .section-actions {
    gap: 0.65rem;
  }

  .food-page .food-promo .button {
    min-height: 3rem;
    padding: 0.7rem 1.35rem;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
  }

  .food-page .food-promo .button.primary {
    color: #fff;
    background: var(--color-food);
  }

  .food-page .food-promo .button.secondary {
    color: #b94b6f;
    background: #f7edf1;
  }

  .food-page .category-explorer {
    margin-top: 3.4rem;
    padding-top: 3rem;
    border-top: 1px solid #ddd8de;
  }

  .food-page .category-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .food-page .category-link-card {
    min-height: 150px;
    padding: 1.1rem 2.3rem 1.1rem 1.1rem;
    border: 0;
    border-radius: 16px;
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .food-page .category-link-card::after {
    content: "";
    top: 1.15rem;
    right: 1rem;
    width: 0.9rem;
    height: 0.64rem;
    background: var(--accent, #7c6fa8);
    clip-path: polygon(0 37%, 58% 37%, 58% 0, 100% 50%, 58% 100%, 58% 63%, 0 63%);
  }

  .food-page .category-link-card:hover,
  .food-page .category-link-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(31, 41, 51, 0.08);
  }

  .food-page .category-link-card .category-chip {
    width: fit-content;
    padding: 0.25rem 0.5rem;
    border: 1px solid color-mix(in srgb, var(--accent, #7c6fa8) 38%, white);
    border-radius: 999px;
    color: var(--accent, #7c6fa8);
    background: #fff;
    font-size: 0.7rem;
  }

  .food-page .category-link-card strong {
    color: var(--accent, var(--color-text-main));
    font-size: 1.25rem;
    line-height: 1.1;
  }

  .food-page .category-link-card small {
    color: var(--color-text-sub);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.4;
  }
}

/* Food section headings: one-line title with supporting copy directly below. */
@media (min-width: 761px) {
  .food-page .food-section .section-header {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-items: start;
  }

  .food-page .food-section .section-header h2 {
    max-width: none;
    white-space: nowrap;
  }

  .food-page .food-section .section-header > p {
    max-width: 55rem;
    margin: 0;
  }
}

/* Shared category cards: reuse the TOP component in lower-page explorers. */
.category-explorer .category-explorer-grid {
  display: grid;
  gap: 0.9rem;
}

.category-explorer .category-card {
  height: 100% !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem !important;
  padding: 1rem 0.95rem 0.78rem !important;
  border: 0 !important;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
  text-align: center;
}

.category-explorer .category-card h3 {
  order: 1;
  margin: 0;
  color: var(--category-color, var(--color-text-main));
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.category-explorer .category-card p {
  order: 2;
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  font-weight: 650;
  line-height: 1.35;
}

.category-explorer .category-card .category-chip {
  order: 3;
  margin-top: auto !important;
  padding: 0.25rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--category-color, #7c6fa8) 42%, white);
  border-radius: 999px;
  color: var(--category-color, #7c6fa8);
  background: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.category-explorer .category-card.category-food { --category-color: var(--color-cat-food); }
.category-explorer .category-card.category-move { --category-color: var(--color-cat-move); }
.category-explorer .category-card.category-relax { --category-color: var(--color-cat-relax); }
.category-explorer .category-card.category-culture { --category-color: var(--color-cat-culture); }
.category-explorer .category-card.category-help { --category-color: var(--color-cat-help); }

@media (min-width: 761px) {
  .category-explorer .category-explorer-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.85rem 0.75rem;
  }

  .category-explorer .category-card {
    grid-column: span 2;
    padding: 1rem 0.9rem 0.85rem !important;
    gap: 0.45rem !important;
  }
}

@media (max-width: 760px) {
  .category-explorer .category-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

/* Food category uses the same Food Card CTA as TOP and guide pages. */
.food-page .food-card-cta-section {
  margin-top: 3rem;
  padding: 0;
}

.food-page .shared-food-card-cta {
  overflow: hidden;
  margin-top: 0;
}

.food-page .shared-food-card-cta .food-card-benefits {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.3rem, 1.2vw, 0.6rem);
}

.food-page .shared-food-card-cta .food-card-benefits span {
  flex: 0 1 auto;
  white-space: nowrap;
}

.food-page .shared-food-card-cta .section-actions {
  width: min(86%, 31rem);
  justify-items: center;
}

.food-page .shared-food-card-cta .button.primary {
  width: 100%;
  font-size: clamp(20px, 5.286vw, 48px);
}

@media (min-width: 761px) {
  .food-page .shared-food-card-cta {
    min-height: 0;
    padding: 3.55rem 3rem 1.9rem;
    border-radius: var(--jfm-card-radius);
  }

  .food-page .shared-food-card-cta .food-card-cta-content {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 18rem;
    grid-template-rows: auto auto auto;
    justify-items: start;
    column-gap: 2rem;
    row-gap: 0.65rem;
    text-align: left;
  }

  .food-page .shared-food-card-cta h2,
  .food-page .shared-food-card-cta p,
  .food-page .shared-food-card-cta .food-card-benefits {
    grid-column: 1;
  }

  .food-page .shared-food-card-cta h2 {
    max-width: 15ch;
    font-size: 2.5rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .food-page .shared-food-card-cta p {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .food-page .shared-food-card-cta .food-card-benefits {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .food-page .shared-food-card-cta .food-card-benefits span {
    padding: 0.3rem 0.52rem;
    font-size: 0.7rem;
  }

  .food-page .shared-food-card-cta .section-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0;
  }

  .food-page .shared-food-card-cta .button.primary {
    min-height: 3.2rem;
    padding: 0.75rem 1rem;
    font-size: 1.08rem;
  }

  .food-page .shared-food-card-cta .food-card-sample-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .food-page .food-card-cta-section {
    margin-top: 1.8rem;
  }
}

/* Food landing: guide links use icons; phrase cards stay reference-only. */
.food-page .food-guide-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.72rem 0.85rem;
  border: 0;
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.food-page .food-guide-card::before,
.food-page .food-guide-card::after {
  display: none !important;
  content: none !important;
}

.food-page .food-guide-card-icon {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 3.05rem;
  height: 3.05rem;
  align-self: start;
}

.food-page .food-guide-card-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.food-page .food-guide-card.guide-restaurant-full .food-guide-card-icon-img,
.food-page .food-guide-card.guide-how-to-pay .food-guide-card-icon-img {
  transform: scale(1.22);
  transform-origin: center;
}

.food-page .food-guide-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: none;
  margin: 0;
}

.food-page .food-guide-card-first-move {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.1rem;
  padding-top: 0.72rem;
  border-top: 1px solid #eee9ed;
}

.food-page .food-guide-card-first-move .first-move-label {
  color: #b94b6f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.food-page .food-guide-card-first-move p {
  color: var(--color-text-sub);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.38;
}

.food-page .food-phrase-card {
  cursor: default;
  border: 0;
  background: #fffbfd;
  box-shadow: none;
}

.food-page .food-phrase-card::after {
  content: none;
}

@media (min-width: 761px) {
  .food-page .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .food-page .food-guide-card {
    min-height: 184px;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.82rem 1.05rem;
    padding: 1.15rem 1.2rem;
  }

  .food-page .food-guide-card-icon {
    width: 3.8rem;
    height: 3.8rem;
  }

  .food-page .food-guide-card.guide-restaurant-full .food-guide-card-icon-img,
  .food-page .food-guide-card.guide-how-to-pay .food-guide-card-icon-img {
    transform: scale(1.28);
  }

  .food-page .food-guide-card h3 {
    font-size: 1.3rem;
    line-height: 1.08;
  }

  .food-page .food-guide-card-first-move {
    min-height: 4.6rem;
    padding-top: 0.85rem;
  }

  .food-page .food-phrase-card {
    min-height: 154px;
    padding: 1rem 1.05rem;
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  .food-page .food-guide-card {
    min-height: 0;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 0.7rem 0.8rem;
    padding: 0.95rem;
    border-radius: var(--jfm-card-radius);
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .food-page .food-guide-card-icon {
    width: 3.05rem;
    height: 3.05rem;
  }

  .food-page .food-guide-card.guide-restaurant-full .food-guide-card-icon-img,
  .food-page .food-guide-card.guide-how-to-pay .food-guide-card-icon-img {
    transform: scale(1.24);
  }

  .food-page .food-guide-card h3 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .food-page .food-guide-card-first-move {
    padding-top: 0.7rem;
  }

  .food-page .food-guide-card-first-move p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .food-page .food-phrase-card {
    border-radius: 12px;
  }
}

/* Desktop Food landing polish: keep phrase cards lighter than primary guide cards. */
@media (min-width: 761px) {
  .food-page .food-phrase-grid {
    gap: 0.82rem;
  }

  .food-page .food-phrase-card {
    min-height: 138px;
    padding: 0.95rem 1rem 0.9rem;
    border: 0;
    background: rgba(255, 255, 255, 0.68);
  }

  .food-page .food-phrase-card h3 {
    font-size: 0.92rem;
    line-height: 1.22;
  }

  .food-page .food-phrase-card .jp {
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .food-page .food-phrase-card > p:last-child {
    font-size: 0.86rem;
    line-height: 1.38;
  }
}

/* Language-pair convention: English follows the active category color; Japanese is black. */
.food-page,
.food-phrase-card {
  --language-pair-accent: #b94b6f;
}

.move-page,
.move-phrase-card {
  --language-pair-accent: var(--color-cat-move);
}

.relax-page,
.relax-phrase-card {
  --language-pair-accent: var(--color-cat-relax);
}

.culture-page,
.culture-phrase-card {
  --language-pair-accent: var(--color-cat-culture);
}

.help-page,
.help-phrase-card {
  --language-pair-accent: var(--color-cat-help);
}

.guide-page {
  --language-pair-accent: var(--guide-accent);
}

.home-page .quick-phrase-card .translation,
.food-phrase-card .translation,
.move-phrase-card .translation,
.relax-phrase-card .translation,
.culture-phrase-card .translation,
.help-phrase-card .translation,
.guide-page .phrase .translation,
.guide-page .staff-phrase .translation {
  color: var(--language-pair-accent, #b94b6f) !important;
}

.home-page .quick-phrase-card .jp,
.food-phrase-card .jp,
.move-phrase-card .jp,
.relax-phrase-card .jp,
.culture-phrase-card .jp,
.help-phrase-card .jp,
.guide-page .phrase .jp,
.guide-page .staff-phrase .jp {
  color: var(--color-text-main) !important;
  font-weight: 650 !important;
}

.guide-page .phrase .romaji,
.guide-page .staff-phrase .romaji {
  color: var(--color-text-sub) !important;
}

/* Food Card CTA consistency: TOP, Food category, and guide pages share one visual treatment. */
.home-page .shared-food-card-cta,
.food-page .shared-food-card-cta,
.guide-page .shared-food-card-cta {
  overflow: hidden;
  margin-top: 0.65rem;
}

.home-page .shared-food-card-cta .food-card-ribbon,
.food-page .shared-food-card-cta .food-card-ribbon,
.guide-page .shared-food-card-cta .food-card-ribbon {
  top: 0.55rem;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: 76%;
  padding: 0.7rem 1.7rem 0.7rem 1rem !important;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.72rem) 50%, 100% 100%, 0 100%);
  box-shadow: 0 4px 8px rgba(31, 41, 51, 0.08);
}

.home-page .shared-food-card-cta .food-card-ribbon::after,
.food-page .shared-food-card-cta .food-card-ribbon::after,
.guide-page .shared-food-card-cta .food-card-ribbon::after {
  display: none !important;
  content: none !important;
}

.shared-food-card-cta .food-card-benefits {
  gap: clamp(0.32rem, 1.15vw, 0.62rem);
}

.shared-food-card-cta .food-card-benefits span {
  padding: 0.34rem clamp(0.48rem, 1.2vw, 0.72rem);
  border: 0;
  border-radius: 6px;
  color: #6b4100;
  background: #fff0bf;
  font-size: clamp(0.68rem, 2.65vw, 0.8rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.food-card-benefits span {
  border: 0 !important;
}

/* Category TOP pass after Food: align Move, Relax, Culture, and Help with the simplified Food tone. */
.move-page { --category-page-color: var(--color-cat-move); }
.relax-page { --category-page-color: var(--color-cat-relax); }
.culture-page { --category-page-color: var(--color-cat-culture); }
.help-page { --category-page-color: var(--color-cat-help); }

.move-page .section-header,
.relax-page .section-header,
.culture-page .section-header,
.help-page .section-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.55rem !important;
  align-items: start !important;
}

.move-page .section-header > div,
.move-page .section-header > p,
.relax-page .section-header > div,
.relax-page .section-header > p,
.culture-page .section-header > div,
.culture-page .section-header > p,
.help-page .section-header > div,
.help-page .section-header > p {
  grid-column: 1 / -1 !important;
}

.move-page .section-header > p,
.relax-page .section-header > p,
.culture-page .section-header > p,
.help-page .section-header > p {
  max-width: 55rem !important;
  margin: 0 !important;
}

.move-page .guide-card,
.relax-page .guide-card,
.culture-page .guide-card,
.help-page .guide-card {
  border: 0;
  border-radius: var(--jfm-card-radius);
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.move-page .guide-card::before,
.move-page .guide-card::after,
.relax-page .guide-card::before,
.relax-page .guide-card::after,
.culture-page .guide-card::before,
.culture-page .guide-card::after,
.help-page .guide-card::before,
.help-page .guide-card::after {
  display: none !important;
  content: none !important;
}

.move-page .guide-card .category-chip,
.relax-page .guide-card .category-chip,
.culture-page .guide-card .category-chip,
.help-page .guide-card .category-chip {
  width: fit-content;
  border: 1px solid color-mix(in srgb, var(--category-page-color) 34%, white);
  border-radius: 999px;
  color: var(--category-page-color);
  background: #fff;
}

.move-page .guide-card h3,
.relax-page .guide-card h3,
.culture-page .guide-card h3,
.help-page .guide-card h3 {
  color: var(--color-text-main);
}

.move-page .guide-card > div,
.relax-page .guide-card > div,
.culture-page .guide-card > div,
.help-page .guide-card > div {
  margin-top: auto;
  border-top: 1px solid #eee9ed;
}

.move-page .guide-card .first-move-label,
.relax-page .guide-card .first-move-label,
.culture-page .guide-card .first-move-label,
.help-page .guide-card .first-move-label {
  color: var(--category-page-color);
}

.move-page .guide-card p,
.relax-page .guide-card p,
.culture-page .guide-card p,
.help-page .guide-card p {
  color: var(--color-text-sub);
}

.move-phrase-card,
.relax-phrase-card,
.culture-phrase-card,
.help-phrase-card {
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

@media (min-width: 761px) {
  .move-page .category-page-header,
  .relax-page .category-page-header,
  .culture-page .category-page-header,
  .help-page .category-page-header {
    gap: 0;
    padding: 2.25rem 0 2.4rem;
  }

  .move-page .category-page-header h1,
  .relax-page .category-page-header h1,
  .culture-page .category-page-header h1,
  .help-page .category-page-header h1 {
    max-width: none;
    color: #111418;
    font-size: 3.65rem;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .move-page .category-page-header .lead,
  .relax-page .category-page-header .lead,
  .culture-page .category-page-header .lead,
  .help-page .category-page-header .lead {
    max-width: 42rem;
    margin: 0.9rem 0 0;
    color: var(--color-text-sub);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
  }

  .move-page .section-header h2,
  .relax-page .section-header h2,
  .culture-page .section-header h2,
  .help-page .section-header h2 {
    max-width: none;
    font-size: 2.45rem;
    line-height: 1.02;
    white-space: nowrap;
  }

  .move-page .section-header > p,
  .relax-page .section-header > p,
  .culture-page .section-header > p,
  .help-page .section-header > p {
    color: var(--color-text-sub);
    font-size: 0.98rem;
    font-weight: 550;
    line-height: 1.45;
  }

  .move-page .guide-card,
  .relax-page .guide-card,
  .culture-page .guide-card,
  .help-page .guide-card {
    min-height: 214px;
    gap: 0.75rem;
    padding: 1.15rem 1.2rem;
  }

  .move-page .guide-card .category-chip,
  .relax-page .guide-card .category-chip,
  .culture-page .guide-card .category-chip,
  .help-page .guide-card .category-chip {
    padding: 0.28rem 0.6rem;
    font-size: 0.72rem;
    line-height: 1;
  }

  .move-page .guide-card h3,
  .relax-page .guide-card h3,
  .culture-page .guide-card h3,
  .help-page .guide-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.015em;
  }

  .move-page .guide-card > div,
  .relax-page .guide-card > div,
  .culture-page .guide-card > div,
  .help-page .guide-card > div {
    display: grid;
    gap: 0.35rem;
    padding-top: 0.75rem;
  }

  .move-page .guide-card .first-move-label,
  .relax-page .guide-card .first-move-label,
  .culture-page .guide-card .first-move-label,
  .help-page .guide-card .first-move-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .move-page .guide-card p,
  .relax-page .guide-card p,
  .culture-page .guide-card p,
  .help-page .guide-card p {
    font-size: 0.92rem;
    font-weight: 550;
    line-height: 1.4;
  }

  .move-phrase-card,
  .relax-phrase-card,
  .culture-phrase-card,
  .help-phrase-card {
    min-height: 138px;
    padding: 0.95rem 1rem 0.9rem;
  }

  .move-phrase-card h3,
  .relax-phrase-card h3,
  .culture-phrase-card h3,
  .help-phrase-card h3 {
    font-size: 0.92rem;
    line-height: 1.22;
  }

  .move-phrase-card .jp,
  .relax-phrase-card .jp,
  .culture-phrase-card .jp,
  .help-phrase-card .jp {
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .move-phrase-card > p:last-child,
  .relax-phrase-card > p:last-child,
  .culture-phrase-card > p:last-child,
  .help-phrase-card > p:last-child {
    font-size: 0.86rem;
    line-height: 1.38;
  }
}

@media (max-width: 760px) {
  .move-page .guide-card,
  .relax-page .guide-card,
  .culture-page .guide-card,
  .help-page .guide-card {
    border-radius: var(--jfm-card-radius);
    box-shadow: var(--jfm-card-shadow);
  }

  .move-page .guide-card p,
  .relax-page .guide-card p,
  .culture-page .guide-card p,
  .help-page .guide-card p {
    color: var(--color-text-sub);
    font-weight: 650;
  }

  .move-phrase-card,
  .relax-phrase-card,
  .culture-phrase-card,
  .help-phrase-card {
    border-radius: 12px;
  }
}

/* Food category: keep phrase cards and section headers consistent at every width. */
.food-page .food-section .section-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.55rem !important;
  align-items: start !important;
}

.food-page .food-section .section-header > div,
.food-page .food-section .section-header > p {
  grid-column: 1 / -1 !important;
}

.food-page .food-section .section-header > p {
  max-width: 55rem !important;
  margin: 0 !important;
}

.food-page .food-section .section-header h2 {
  max-width: 100% !important;
}

.food-page .food-phrase-card {
  background: rgba(255, 255, 255, 0.68) !important;
}

@media (min-width: 761px) {
  .food-page .food-section .section-header h2 {
    white-space: nowrap !important;
  }
}

@media (max-width: 760px) {
  .food-page .food-section .section-header h2 {
    white-space: normal !important;
  }
}

/* Category TOP first-move cards: match the Food TOP icon-led layout. */
.move-page .category-guide-card,
.relax-page .category-guide-card,
.culture-page .category-guide-card,
.help-page .category-guide-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 3.85rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.72rem 0.85rem;
  border: 0;
  background: var(--color-card-bg);
  box-shadow: var(--jfm-card-shadow);
}

.move-page .category-guide-card::before,
.move-page .category-guide-card::after,
.relax-page .category-guide-card::before,
.relax-page .category-guide-card::after,
.culture-page .category-guide-card::before,
.culture-page .category-guide-card::after,
.help-page .category-guide-card::before,
.help-page .category-guide-card::after {
  display: none !important;
  content: none !important;
}

.category-guide-card-icon {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 3.7rem;
  height: 3.7rem;
  align-self: start;
}

.category-guide-card-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.move-page .category-guide-card h3,
.relax-page .category-guide-card h3,
.culture-page .category-guide-card h3,
.help-page .category-guide-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: none;
  margin: 0;
}

.move-page .category-guide-card-first-move,
.relax-page .category-guide-card-first-move,
.culture-page .category-guide-card-first-move,
.help-page .category-guide-card-first-move {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.1rem;
  padding-top: 0.72rem;
  border-top: 1px solid #eee9ed;
}

@media (min-width: 761px) {
  .move-page .guide-grid,
  .relax-page .guide-grid,
  .culture-page .guide-grid,
  .help-page .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .move-page .category-guide-card,
  .relax-page .category-guide-card,
  .culture-page .category-guide-card,
  .help-page .category-guide-card {
    min-height: 184px;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.82rem 1.05rem;
    padding: 1.15rem 1.2rem;
  }

  .category-guide-card-icon {
    width: 4.8rem;
    height: 4.8rem;
  }

  .move-page .category-guide-card h3,
  .relax-page .category-guide-card h3,
  .culture-page .category-guide-card h3,
  .help-page .category-guide-card h3 {
    font-size: 1.3rem;
    line-height: 1.08;
  }

  .move-page .category-guide-card-first-move,
  .relax-page .category-guide-card-first-move,
  .culture-page .category-guide-card-first-move,
  .help-page .category-guide-card-first-move {
    min-height: 4.6rem;
    padding-top: 0.85rem;
  }
}

@media (max-width: 760px) {
  .move-page .category-guide-card,
  .relax-page .category-guide-card,
  .culture-page .category-guide-card,
  .help-page .category-guide-card {
    min-height: 0;
    grid-template-columns: 3.95rem minmax(0, 1fr);
    gap: 0.7rem 0.8rem;
    padding: 0.95rem;
    border-radius: var(--jfm-card-radius);
    background: var(--color-card-bg);
    box-shadow: var(--jfm-card-shadow);
  }

  .category-guide-card-icon {
    width: 3.7rem;
    height: 3.7rem;
  }

  .move-page .category-guide-card h3,
  .relax-page .category-guide-card h3,
  .culture-page .category-guide-card h3,
  .help-page .category-guide-card h3 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .move-page .category-guide-card-first-move,
  .relax-page .category-guide-card-first-move,
  .culture-page .category-guide-card-first-move,
  .help-page .category-guide-card-first-move {
    padding-top: 0.7rem;
  }

  .move-page .category-guide-card-first-move p,
  .relax-page .category-guide-card-first-move p,
  .culture-page .category-guide-card-first-move p,
  .help-page .category-guide-card-first-move p {
    font-size: 0.84rem;
    line-height: 1.35;
  }
}

/* Guide detail breadcrumbs: keep position and size consistent across pages. */
.guide-page .crumbs {
  min-height: 1.1rem;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0.35rem !important;
  margin: 0 0 clamp(1rem, 2.5vw, 1.45rem) !important;
  font-size: clamp(0.72rem, 1.5vw, 0.8rem) !important;
  line-height: 1.35 !important;
  white-space: nowrap;
}

/* Food Card polish pass: align sample hub and detail routes with the current site tone. */
.food-card-page .food-samples .section-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.55rem !important;
  align-items: start !important;
  margin-bottom: 1rem !important;
}

.food-card-page .food-samples .section-header > div,
.food-card-page .food-samples .section-header > p {
  grid-column: 1 / -1 !important;
}

.food-card-page .food-samples .section-header > p {
  max-width: 55rem !important;
  margin: 0 !important;
  color: var(--color-text-sub) !important;
  font-size: clamp(0.92rem, 2vw, 1rem) !important;
  font-weight: 550 !important;
  line-height: 1.45 !important;
}

.food-card-page .food-cards-create-section {
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  padding: 0;
}

.food-card-page .food-cards-create-section .shared-food-card-cta {
  overflow: hidden;
  margin-top: 0;
  border-radius: var(--jfm-card-radius);
}

.food-card-page .food-cards-create-section .shared-food-card-cta .food-card-ribbon {
  top: 0.55rem;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: 76%;
  padding: 0.7rem 1.7rem 0.7rem 1rem !important;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.72rem) 50%, 100% 100%, 0 100%);
  box-shadow: 0 4px 8px rgba(31, 41, 51, 0.08);
}

.food-card-page .food-cards-create-section .shared-food-card-cta .food-card-ribbon::after {
  display: none !important;
  content: none !important;
}

.food-card-page .food-cards-create-section .shared-food-card-cta .food-card-benefits {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.3rem, 1.2vw, 0.6rem);
}

.food-card-page .food-cards-create-section .shared-food-card-cta .food-card-benefits span {
  flex: 0 1 auto;
  white-space: nowrap;
}

.food-card-page .food-cards-create-section .shared-food-card-cta .section-actions {
  width: min(86%, 31rem);
  justify-items: center;
}

.food-card-page .food-cards-create-section .shared-food-card-cta .button.primary {
  width: 100%;
  font-size: clamp(20px, 5.286vw, 48px);
}

.food-card-page .food-cards-create-section .food-card-sample-link {
  display: none;
}

@media (min-width: 761px) {
  .food-card-page .food-cards-create-section .shared-food-card-cta {
    min-height: 0;
    padding: 3.55rem 3rem 1.9rem;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta .food-card-cta-content {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 18rem;
    grid-template-rows: auto auto auto;
    justify-items: start;
    column-gap: 2rem;
    row-gap: 0.65rem;
    text-align: left;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta h2,
  .food-card-page .food-cards-create-section .shared-food-card-cta p,
  .food-card-page .food-cards-create-section .shared-food-card-cta .food-card-benefits {
    grid-column: 1;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta h2 {
    max-width: 15ch;
    font-size: 2.5rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta p {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta .food-card-benefits {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta .food-card-benefits span {
    padding: 0.3rem 0.52rem;
    font-size: 0.7rem;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta .section-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0;
  }

  .food-card-page .food-cards-create-section .shared-food-card-cta .button.primary {
    min-height: 3.2rem;
    padding: 0.75rem 1rem;
    font-size: 1.08rem;
  }
}

.food-detail-page .food-show-steps span {
  width: clamp(2rem, 4vw, 2.35rem);
  height: clamp(2rem, 4vw, 2.35rem);
  border-radius: 999px;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 900;
}

.food-detail-page .staff-response-option {
  isolation: isolate;
  overflow: hidden;
}

.food-detail-page .staff-response-option:nth-child(1)::before {
  width: clamp(2.2rem, 4.6vw, 3.25rem);
  height: clamp(2.2rem, 4.6vw, 3.25rem);
  border-width: clamp(0.48rem, 1vw, 0.72rem);
}

.food-detail-page .staff-response-option:nth-child(2)::before {
  font-size: clamp(8.4rem, 15.75vw, 11.4rem);
  line-height: 0.48;
}

.food-detail-page .staff-response-option:nth-child(3)::before {
  font-size: clamp(4rem, 8vw, 5.7rem);
}

@media (max-width: 760px) {
  .food-detail-page .staff-response-option:nth-child(1)::before {
    width: clamp(2.64rem, 5.52vw, 3.9rem);
    height: clamp(2.64rem, 5.52vw, 3.9rem);
    border-width: clamp(0.576rem, 1.2vw, 0.864rem);
  }

  .food-detail-page .staff-response-option:nth-child(3)::before {
    font-size: clamp(6rem, 12vw, 8.55rem);
    line-height: 0.85;
  }
}

.food-detail-page > .section-actions .button.secondary {
  color: var(--color-text-main) !important;
  background: #e6e2e6 !important;
}

.food-card-page .disclaimer-box .jp,
.food-detail-page .disclaimer-box .jp,
.food-detail-page .food-detail-notes .disclaimer-box .jp {
  font-weight: 450 !important;
}

/* Mobile-only spacing pass: keep desktop rails intact, but match TOP gutters on lower pages. */
@media (max-width: 640px) {
  .page-shell.layout-container {
    padding-right: 0;
    padding-left: 0;
  }

  .guide-page .communication-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .guide-page .steps-section .guide-section-title,
  .guide-page .dont-section .guide-section-title,
  .guide-page .food-guide-cta > h2 {
    margin-left: calc(50% - 50vw) !important;
    padding-left: 16px !important;
  }
}

/* Keep the mobile site header above page content without changing desktop layout. */
@media (max-width: 640px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9;
    background: #fff;
    isolation: isolate;
  }
}

/* Move TOP help CTA: keep it as a quiet helper note, not a clickable guide card. */
.move-page .move-help-note {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
  padding: clamp(1rem, 2.4vw, 1.28rem) clamp(0.9rem, 2.4vw, 1.2rem) clamp(1rem, 2.4vw, 1.28rem) clamp(1rem, 2.5vw, 1.35rem);
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-cat-move) 18%, white);
  border-bottom: 1px solid color-mix(in srgb, var(--color-cat-move) 18%, white);
  border-radius: 0;
  background: color-mix(in srgb, var(--color-cat-move) 4%, white);
  box-shadow: none;
  cursor: default;
}

/* Action icons with generous source-image padding: zoom the artwork without changing its layout box. */
.guide-short-break .category-guide-card-icon-img,
.guide-lost-something .category-guide-card-icon-img,
.guide-page.guide-short-break .guide-intro-icon,
.guide-page.guide-lost-something .guide-intro-icon {
  transform: scale(1.5);
  transform-origin: center;
  clip-path: inset(16.667%);
}

.move-page .move-help-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-cat-move);
}

.move-page .move-help-note h2 {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.move-page .move-help-note p:not(.eyebrow) {
  margin: 0.35rem 0 0;
  color: var(--color-text-sub);
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  font-weight: 600;
  line-height: 1.42;
}

.move-page .move-help-note .button.secondary {
  justify-self: end;
  min-height: 2.45rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--color-cat-move);
  border-radius: 999px;
  color: #fff;
  background: var(--color-cat-move);
  box-shadow: none;
  cursor: pointer;
}

.move-page .move-help-note .button.secondary:hover,
.move-page .move-help-note .button.secondary:focus-visible {
  border-color: var(--color-cat-move);
  color: #fff;
  background: color-mix(in srgb, var(--color-cat-move) 86%, #10284f);
  box-shadow: none;
}

@media (max-width: 640px) {
  .move-page .move-help-note {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.95rem 0.95rem 0.95rem 1.05rem;
  }

  .move-page .move-help-note .button.secondary {
    justify-self: start;
    width: auto;
  }
}

/* Custom Food Card MVP wireframe */
.custom-food-card-mvp-page {
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.custom-food-card-mvp-page .guide-page-header {
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
}

.custom-food-card-mvp-page .guide-page-header h1 {
  max-width: none;
}

.custom-food-card-workspace {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  border: 1px solid #eadfe3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

.custom-step-progress {
  display: grid;
  gap: 0.55rem;
}

.custom-step-progress > span {
  color: #a54162;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.custom-step-progress > div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3e9ed;
}

.custom-step-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #c85b7d;
  transition: width 180ms ease;
}

.custom-food-card-step,
.custom-step-heading {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.custom-step-heading h2 {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.custom-step-heading p {
  margin: 0;
  color: var(--color-text-sub);
  font-weight: 550;
  line-height: 1.45;
}

.custom-step-heading .custom-step-question {
  color: var(--color-text-main);
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  font-weight: 750;
}

.custom-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.custom-choice-item {
  min-width: 0;
  display: grid;
  gap: 0.65rem;
}

.custom-choice-item.has-reason {
  grid-column: 1 / -1;
}

.custom-choice-item > .custom-choice-card {
  width: 100%;
}

.custom-choice-item:not(.has-reason) > .custom-choice-card {
  height: 100%;
}

.custom-choice-card {
  min-width: 0;
  min-height: 118px;
  display: grid;
  gap: 0.45rem;
  align-content: center;
  padding: 1rem;
  border: 2px solid #eee4e8;
  border-radius: 16px;
  color: var(--color-text-main);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.custom-choice-card:hover,
.custom-choice-card:focus-visible,
.custom-choice-card.is-selected {
  border-color: #c85b7d;
  background: #fff7f9;
}

.custom-choice-card strong {
  font-size: 1rem;
  line-height: 1.22;
}

.custom-choice-card span {
  color: var(--color-text-sub);
  font-size: 0.86rem;
  line-height: 1.38;
}

.custom-choice-card small {
  color: #8b596a;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
}

.custom-choice-card:disabled {
  border-style: dashed;
  background: #f7f4f5;
}

.custom-reason-panel {
  display: grid;
  gap: 0.75rem;
  margin: 0.35rem 0 0;
  padding: 1rem;
  border: 1px solid #eadfe3;
  border-radius: 14px;
  background: #fffafb;
}

.custom-reason-panel legend {
  padding: 0 0.25rem;
  color: var(--color-text-main);
  font-size: 1rem;
  font-weight: 800;
}

.custom-reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.custom-reason-button {
  min-height: 42px;
  padding: 0.65rem 0.82rem;
  border: 1px solid #d9ccd1;
  border-radius: 999px;
  color: var(--color-text-main);
  background: #fff;
  font-weight: 750;
  cursor: pointer;
}

.custom-reason-button:hover,
.custom-reason-button:focus-visible,
.custom-reason-button.is-selected {
  border-color: #c85b7d;
  color: #983a59;
  background: #fdeef3;
}

.custom-step-actions,
.custom-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.custom-step-actions-split {
  justify-content: space-between;
}

.custom-food-card-mvp-page button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.custom-severe-note,
.custom-selection-error {
  padding: 0.8rem 0.9rem;
  border-left: 4px solid #c85b7d;
  color: var(--color-text-main) !important;
  background: #fff4f7;
  font-size: 0.9rem;
}

.custom-selected-count {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.3rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: var(--color-text-main);
  background: #f6f3f4;
  font-size: 0.92rem;
  font-weight: 700;
}

.custom-ingredient-groups {
  display: grid;
  gap: 0.65rem;
}

.custom-ingredient-group {
  overflow: hidden;
  border: 1px solid #e6dce0;
  border-radius: 14px;
  background: #fff;
}

.custom-ingredient-group summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--color-text-main);
  background: #faf7f8;
  font-weight: 800;
  cursor: pointer;
}

.custom-ingredient-group summary span {
  color: var(--color-text-sub);
  font-size: 0.8rem;
}

.custom-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.75rem;
}

.custom-ingredient-button {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid #e4d9dd;
  border-radius: 12px;
  color: var(--color-text-main);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.custom-ingredient-button.is-selected {
  border-color: #c85b7d;
  background: #fff4f7;
}

.custom-ingredient-button:focus-visible {
  outline: 2px solid rgba(200, 91, 125, 0.55);
  outline-offset: 2px;
}

.custom-ingredient-check {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border: 1px solid #d7c9ce;
  border-radius: 50%;
  color: #a54162;
  background: #fff;
  font-weight: 900;
}

.custom-ingredient-button > span:last-child {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.custom-ingredient-button strong,
.custom-ingredient-button small {
  overflow-wrap: anywhere;
}

.custom-ingredient-button strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.custom-ingredient-button small {
  color: var(--color-text-sub);
  font-size: 0.78rem;
  line-height: 1.2;
}

.custom-confirm-summary {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid #e7dce0;
  border-radius: 14px;
  background: #faf7f8;
}

.custom-confirm-summary > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
}

.custom-confirm-summary > div > span {
  color: var(--color-text-sub);
  font-size: 0.82rem;
  font-weight: 750;
}

.custom-confirm-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--color-text-main);
  font-size: 0.92rem;
  line-height: 1.35;
}

.custom-confirm-items {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-main);
  font-size: 0.92rem;
  line-height: 1.35;
}

.custom-confirm-items strong {
  font-size: inherit;
}

.custom-confirm-group > span {
  width: fit-content;
  display: inline-flex;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  letter-spacing: 0.015em;
}

.custom-confirm-summary .custom-confirm-group-items > span,
.custom-confirm-summary .custom-confirm-group-purpose > span,
.custom-confirm-summary .custom-confirm-group-reason > span {
  color: #a65d74;
  background: rgba(212, 125, 151, 0.1);
}

.custom-confirm-item-en {
  color: #7c7780;
  font-size: 0.86rem;
  font-weight: 500;
}

@media (min-width: 641px) {
  .custom-confirm-summary > .custom-confirm-group {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    align-items: start;
  }

  .custom-confirm-summary .custom-confirm-group > span {
    width: fit-content;
    height: fit-content;
    align-self: start;
    justify-self: start;
    padding: 0.18rem 0.48rem;
    border-radius: 999px;
    color: #a65d74;
    background: rgba(212, 125, 151, 0.1);
    line-height: 1.25;
    white-space: nowrap;
  }

  .custom-confirm-summary .custom-confirm-items {
    margin: 0;
  }
}

@media (min-width: 769px) {
  .custom-food-card-step[data-custom-step="3"] .custom-confirm-summary {
    gap: 1.05rem;
    padding: 1.35rem 1.5rem;
  }

  .custom-food-card-step[data-custom-step="3"] .custom-confirm-summary > .custom-confirm-group {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    column-gap: 1.2rem;
  }

  .custom-food-card-step[data-custom-step="3"] .custom-confirm-summary .custom-confirm-group > span {
    padding: 0.22rem 0.55rem;
    font-size: 0.86rem;
  }

  .custom-food-card-step[data-custom-step="3"] .custom-confirm-items {
    gap: 0.42rem;
    font-size: 1rem;
    line-height: 1.48;
  }

  .custom-food-card-step[data-custom-step="3"] .custom-confirm-item-en {
    font-size: 0.92rem;
  }

  .custom-food-card-step[data-custom-step="3"] .custom-confirm-group-purpose > strong,
  .custom-food-card-step[data-custom-step="3"] .custom-confirm-group-reason > strong {
    font-size: 1.02rem;
    line-height: 1.48;
  }
}

.custom-sample-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem 1rem;
  align-items: center;
  padding: 1rem;
  border-left: 4px solid #c85b7d;
  color: var(--color-text-main);
  background: #fff5f8;
}

.custom-sample-preview h3,
.custom-sample-preview p {
  margin: 0;
}

.custom-sample-preview h3 {
  font-size: 1.02rem;
}

.custom-sample-preview p {
  margin-top: 0.25rem;
  color: var(--color-text-sub);
  font-size: 0.86rem;
  line-height: 1.4;
}

.custom-payment-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 1rem;
  border: 2px dashed #d9b4c1;
  border-radius: 14px;
  color: var(--color-text-main);
  background: #fff8fa;
}

.custom-payment-placeholder > span {
  font-weight: 800;
}

.custom-payment-placeholder > strong {
  color: #a54162;
  font-size: 1.35rem;
}

.custom-payment-placeholder p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.82rem;
}

.custom-flow-safety-note {
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem 0.68rem;
  border-left: 2px solid #d39898;
  color: #686873;
  background: #fcf7f8;
  font-size: 0.76rem;
  line-height: 1.4;
}

.custom-flow-safety-note p {
  margin: 0;
}

.custom-flow-safety-details summary {
  width: fit-content;
  color: #9f566d;
  font-weight: 750;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(159, 86, 109, 0.35);
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.custom-flow-safety-details summary::-webkit-details-marker {
  display: none;
}

.custom-flow-safety-details summary::after {
  content: " +";
  text-decoration: none;
}

.custom-flow-safety-details[open] summary::after {
  content: " −";
}

.custom-flow-safety-details > p {
  margin-top: 0.4rem;
  padding: 0.55rem 0.62rem;
  border-radius: 8px;
  color: #62636d;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  line-height: 1.45;
}

.custom-agreement-box {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  padding: 0.3rem 0.1rem;
  border: 0;
  border-radius: 0;
  color: var(--color-text-main);
  background: transparent;
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
}

.custom-agreement-box input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.08rem 0 0;
  accent-color: #b94b6f;
}

.custom-terms-copy {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.74rem;
  line-height: 1.35;
}

.custom-food-card-step[data-custom-step="3"] {
  gap: 0.58rem;
}

.custom-generated-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: min(100%, 640px);
  margin: 0.65rem auto 1rem;
  color: #111;
}

.custom-card-paper {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.35rem, 4.8vw, 2.35rem);
  border-radius: 24px 20px 23px 21px;
  background-color: #fffaf0;
  background-image:
    radial-gradient(circle, rgba(124, 95, 72, 0.07) 0 0.7px, transparent 0.9px),
    radial-gradient(circle, rgba(184, 118, 137, 0.045) 0 0.65px, transparent 0.9px),
    repeating-linear-gradient(8deg, transparent 0 9px, rgba(118, 92, 72, 0.018) 9px 10px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(249, 239, 224, 0.3));
  background-position: 0 0, 7px 11px, 0 0, 0 0;
  background-size: 17px 19px, 23px 21px, auto, auto;
  box-shadow:
    0 26px 54px rgba(55, 38, 44, 0.14),
    0 6px 16px rgba(55, 38, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.custom-generated-card::before,
.custom-generated-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 25px 19px 24px 21px;
}

.custom-generated-card::before {
  inset: 9px -7px -10px 9px;
  z-index: -2;
  background:
    radial-gradient(circle, rgba(151, 102, 110, 0.045) 0 0.65px, transparent 0.9px),
    linear-gradient(145deg, #f3dfe2, #eadbd2);
  background-size: 19px 21px, auto;
  box-shadow: 0 12px 28px rgba(78, 52, 61, 0.12);
  transform: rotate(0.65deg);
}

.custom-generated-card::after {
  inset: -5px 8px 8px -5px;
  z-index: -1;
  background:
    repeating-linear-gradient(12deg, transparent 0 11px, rgba(128, 100, 76, 0.022) 11px 12px),
    #f6eadc;
  box-shadow: 0 8px 20px rgba(78, 52, 61, 0.08);
  transform: rotate(-0.45deg);
}

.custom-generated-card > * {
  position: relative;
  z-index: 1;
}

.custom-card-brand {
  position: relative;
  width: fit-content;
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  padding: 0.42rem 0.72rem 0.42rem 0.48rem;
  border: 0;
  border-radius: 5px 10px 9px 5px;
  color: #3a3235;
  background: #f3dde3;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  box-shadow:
    3px 3px 0 rgba(229, 214, 198, 0.9),
    0 7px 14px rgba(94, 58, 70, 0.1);
  transform: rotate(-0.55deg);
}

.custom-card-brand::before {
  content: "→";
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b94b6f;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.custom-card-brand::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 30px;
  height: 8px;
  background: rgba(229, 213, 188, 0.78);
  box-shadow: 0 1px 2px rgba(88, 66, 48, 0.08);
  transform: translateX(-50%) rotate(1.5deg);
}

.custom-generated-card-message {
  display: grid;
  gap: 1rem;
  color: #111;
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  font-weight: 760;
  line-height: 1.42;
}

.custom-card-copy-section {
  display: grid;
  gap: 0.35rem;
}

.custom-card-section-label {
  width: fit-content;
  display: inline-flex;
  padding: 0.26rem 0.5rem 0.24rem;
  border-radius: 4px 8px 7px 4px;
  color: #914760;
  background: rgba(244, 226, 231, 0.88);
  font-size: clamp(0.62rem, 1.8vw, 0.74rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.08em;
  box-shadow: 2px 3px 0 rgba(231, 216, 202, 0.62);
}

.custom-generated-card-message p,
.custom-card-short-disclaimer p,
.custom-review-disclaimer p,
.custom-create-another p {
  margin: 0;
}

.custom-card-ingredient-label {
  color: #111;
  font-size: 0.82em;
  font-weight: 850;
}

.custom-card-ingredients-inline,
.custom-card-ingredient-list {
  position: relative;
  padding: 1.05rem 1.1rem;
  border: 0;
  border-radius: 8px 13px 10px 7px;
  color: #111;
  background:
    radial-gradient(circle, rgba(164, 100, 120, 0.05) 0 0.7px, transparent 0.9px),
    linear-gradient(145deg, #fae9ed, #f5e5e6);
  background-size: 18px 19px, auto;
  font-size: 1.08em;
  font-weight: 900;
  box-shadow:
    0 8px 18px rgba(103, 65, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: rotate(-0.15deg);
}

.custom-card-ingredients-inline::before,
.custom-card-ingredient-list::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 46px;
  height: 10px;
  background: rgba(232, 215, 188, 0.78);
  box-shadow: 0 1px 2px rgba(88, 66, 48, 0.08);
  transform: translateX(-50%) rotate(-1deg);
}

.custom-card-ingredients-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.custom-card-ingredients-inline > div {
  min-width: 0;
}

.custom-card-ingredient-list {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 2.55rem;
}

.custom-card-ingredient-list li {
  padding-left: 0.1rem;
}

.custom-card-ingredients-inline small,
.custom-card-ingredient-list small {
  color: #4f5660;
  font-size: 0.65em;
  font-weight: 750;
}

.custom-card-ingredient-ja {
  font-weight: 900;
}

.custom-card-point-block {
  position: relative;
  display: grid;
  gap: 0.48rem;
  padding: 0.9rem 1rem;
  border-radius: 7px 12px 9px 6px;
  background:
    repeating-linear-gradient(9deg, transparent 0 12px, rgba(132, 102, 76, 0.02) 12px 13px),
    #f7efe4;
  box-shadow: 0 7px 16px rgba(83, 61, 44, 0.08);
  transform: rotate(0.12deg);
}

.custom-card-point-instruction {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
  color: #111;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  text-align: center;
}

.custom-card-point-instruction > span {
  font-size: 1.35em;
}

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

.custom-card-response-option {
  min-width: 0;
  min-height: 98px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 0.9rem 0.75rem;
  border: 0;
  border-radius: 8px 11px 9px 7px;
  color: #111;
  background:
    radial-gradient(circle, rgba(112, 87, 70, 0.045) 0 0.65px, transparent 0.85px),
    #fffdf7;
  background-size: 17px 19px, auto;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 0 0 1px rgba(105, 82, 83, 0.16),
    inset 0 4px 0 rgba(185, 75, 111, 0.1),
    0 8px 17px rgba(61, 45, 49, 0.09);
}

.custom-card-response-option:nth-child(1) {
  transform: rotate(-0.25deg);
}

.custom-card-response-option:nth-child(2) {
  transform: rotate(0.3deg);
}

.custom-card-response-option:nth-child(3) {
  transform: rotate(-0.15deg);
}

.custom-card-response-option small {
  color: #9a5268;
  font-size: clamp(0.52rem, 1.6vw, 0.64rem);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.custom-card-response-option strong {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 900;
}

.custom-card-short-disclaimer,
.custom-review-disclaimer {
  display: grid;
  gap: 0.3rem;
  color: #4c525b;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.4;
}

.custom-card-short-disclaimer {
  padding-top: 0.25rem;
  border: 0;
  text-align: center;
}

.custom-card-short-disclaimer::before {
  content: "◆  ·  ◆";
  display: block;
  padding-bottom: 0.4rem;
  color: #c899a8;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
}

/* Completed Custom Food Card: presentation layout */
.custom-card-paper {
  gap: clamp(1rem, 3vw, 1.45rem);
  padding: clamp(1.15rem, 4vw, 1.8rem);
  background-color: #fbf5ea;
}

.custom-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.custom-card-purpose {
  color: #8a7478;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-card-message-sheet {
  position: relative;
  z-index: 0;
  display: grid;
  gap: clamp(1rem, 3.5vw, 1.45rem);
  padding: clamp(1.35rem, 5vw, 2.25rem) clamp(1rem, 4vw, 1.8rem) clamp(1.1rem, 4vw, 1.7rem);
  border-radius: 20px 16px 22px 18px;
  background-color: #fffaf0;
  background-image:
    radial-gradient(circle, rgba(113, 86, 65, 0.065) 0 0.65px, transparent 0.85px),
    repeating-linear-gradient(9deg, transparent 0 10px, rgba(117, 88, 67, 0.018) 10px 11px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 236, 218, 0.28));
  background-position: 0 0, 0 0, 0 0;
  background-size: 18px 20px, auto, auto;
  box-shadow:
    9px 10px 0 #efd0d1,
    0 19px 35px rgba(65, 43, 49, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.custom-card-message-sheet::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 0 16px 0 15px;
  background:
    linear-gradient(225deg, #ead3bf 0 47%, transparent 48%),
    linear-gradient(225deg, rgba(126, 86, 67, 0.14), transparent 64%);
  filter: drop-shadow(-4px 5px 4px rgba(70, 48, 39, 0.1));
  pointer-events: none;
}

.custom-card-type-label {
  justify-self: center;
  width: fit-content;
  padding: 0.45rem 1rem 0.4rem;
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  color: #a04e67;
  background: #f4e1e4;
  font-size: clamp(0.68rem, 1.8vw, 0.82rem);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  box-shadow: 0 7px 12px rgba(103, 64, 76, 0.09);
}

.custom-card-main-copy {
  display: grid;
  gap: 0.75rem;
  max-width: 34rem;
  margin-inline: auto;
  color: #211d1e;
  text-align: center;
}

.custom-card-main-copy p {
  margin: 0;
}

.custom-card-main-line {
  max-width: 100%;
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: 0.015em;
  line-break: strict;
  text-wrap: balance;
}

.custom-card-supplement-copy {
  display: grid;
  gap: 0.65rem;
  max-width: 30rem;
  margin-inline: auto;
  color: #30292b;
  text-align: center;
}

.custom-card-supplement-copy p {
  margin: 0;
  line-break: strict;
  text-wrap: balance;
}

.custom-card-support-line {
  color: #292325;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.52;
}

.custom-card-closing-line {
  max-width: 28rem;
  margin-inline: auto !important;
  color: #393033;
  font-size: clamp(1.05rem, 3.3vw, 1.35rem);
  font-weight: 720;
  line-height: 1.58;
}

.custom-card-ornament {
  display: grid;
  grid-template-columns: minmax(28px, 80px) auto minmax(28px, 80px);
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  color: #cf899d;
}

.custom-card-ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9a1ae);
}

.custom-card-ornament span:last-child {
  background: linear-gradient(90deg, #d9a1ae, transparent);
}

.custom-card-ornament i {
  font-size: 0.72rem;
  font-style: normal;
}

.custom-card-ingredient-area {
  display: grid;
  gap: 0.8rem;
}

.custom-card-ingredient-area > header {
  display: grid;
  gap: 0.18rem;
  justify-items: center;
  text-align: center;
}

.custom-card-ingredient-area > header strong {
  color: #b05b71;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
}

.custom-card-ingredient-area > header small {
  color: #74666a;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.custom-card-ingredient-tiles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.7rem;
  margin-inline: auto;
}

.custom-card-ingredient-tiles[data-ingredient-count="1"] {
  max-width: 150px;
}

.custom-card-ingredient-tiles[data-ingredient-count="2"] {
  max-width: 310px;
}

.custom-card-ingredient-tiles[data-ingredient-count="3"] {
  max-width: 470px;
}

.custom-card-ingredient-tile {
  min-width: 0;
  min-height: 104px;
  display: grid;
  gap: 0.35rem;
  place-content: center;
  padding: 0.9rem 0.65rem;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  color: #2d2729;
  background:
    radial-gradient(circle, rgba(115, 86, 65, 0.05) 0 0.65px, transparent 0.85px),
    #fffdf5;
  background-size: 17px 19px, auto;
  text-align: center;
  filter: drop-shadow(0 6px 6px rgba(69, 48, 52, 0.13));
}

.custom-card-ingredient-tile:nth-child(even) {
  transform: rotate(0.35deg);
}

.custom-card-ingredient-tile:nth-child(odd) {
  transform: rotate(-0.28deg);
}

.custom-card-ingredient-tile strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 850;
  line-height: 1.25;
}

.custom-card-ingredient-tile small {
  overflow-wrap: anywhere;
  color: #625b5d;
  font-size: 0.72rem;
  line-height: 1.25;
}

.custom-card-point-note {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.8rem;
  border-radius: 7px 11px 8px 6px;
  color: #403638;
  background: rgba(248, 237, 226, 0.86);
  box-shadow: 0 6px 13px rgba(72, 51, 41, 0.07);
}

.custom-card-point-note > span {
  color: #c46d84;
  font-size: 1.55rem;
}

.custom-card-point-note > div {
  display: grid;
  gap: 0.12rem;
}

.custom-card-point-note strong {
  font-size: clamp(0.92rem, 2.8vw, 1.1rem);
  line-height: 1.3;
}

.custom-card-point-note small {
  color: #776b6e;
  font-size: 0.72rem;
}

.custom-card-staff-section {
  display: grid;
  gap: 0.75rem;
}

.custom-card-staff-heading {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto auto minmax(20px, 1fr);
  gap: 0.5rem;
  align-items: center;
  color: #493d40;
  text-align: center;
}

.custom-card-staff-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d48ba0);
}

.custom-card-staff-heading > span:last-child {
  background: linear-gradient(90deg, #d48ba0, transparent);
}

.custom-card-staff-heading strong {
  font-size: 1rem;
}

.custom-card-staff-heading small {
  color: #7b6e72;
  font-size: 0.75rem;
}

.custom-card-staff-section .custom-card-response-grid {
  gap: 0;
  padding: 0.65rem;
  border-radius: 14px 12px 15px 13px;
  background:
    radial-gradient(circle, rgba(115, 86, 65, 0.045) 0 0.65px, transparent 0.85px),
    #fffaf1;
  background-size: 19px 21px, auto;
  box-shadow:
    0 12px 26px rgba(61, 43, 47, 0.13),
    inset 0 0 0 1px rgba(138, 100, 105, 0.09);
}

.custom-card-staff-section .custom-card-response-option {
  min-height: 126px;
  gap: 0.35rem;
  padding: 0.7rem 0.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.custom-card-staff-section .custom-card-response-option + .custom-card-response-option {
  border-left: 1px dashed rgba(195, 111, 133, 0.46);
}

.custom-card-response-symbol {
  color: #cf8193;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.custom-card-staff-section .custom-card-response-option strong {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.25;
}

.custom-card-staff-section .custom-card-response-option small {
  color: #706469;
  font-size: clamp(0.58rem, 1.6vw, 0.7rem);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.custom-card-traveler-notes {
  display: grid;
  gap: 0.55rem;
}

.custom-card-traveler-notes article {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 11px 9px 12px 10px;
  color: #403638;
  background: rgba(255, 251, 244, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(140, 108, 100, 0.13),
    0 5px 12px rgba(63, 44, 48, 0.06);
}

.custom-card-traveler-notes article > span {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #a9556d;
  background: #f1d9d7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(83, 52, 61, 0.08);
}

.custom-card-traveler-notes article > div {
  min-width: 0;
}

.custom-card-traveler-notes h3,
.custom-card-traveler-notes p {
  margin: 0;
}

.custom-card-traveler-notes h3 {
  color: #b15c72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.custom-card-traveler-notes p {
  margin-top: 0.15rem;
  color: #5e5356;
  font-size: 0.76rem;
  line-height: 1.4;
}

.custom-card-paper > .custom-card-short-disclaimer {
  color: #77696d;
  font-size: 0.7rem;
}

.custom-card-cross-contact-note {
  color: #9d3558;
  font-weight: 800;
}

.custom-review-disclaimer {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 0.9rem 1rem;
  border-left: 4px solid #c85b7d;
  background: #fff5f8;
}

.custom-review-actions {
  width: min(100%, 640px);
  margin-inline: auto;
}

.custom-ready-actions {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 auto;
}

.custom-save-status {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: #704052;
  background: #f7eef1;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.custom-create-another {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  padding: 1rem;
  border-top: 1px solid #e5dade;
  color: var(--color-text-main);
  background: #faf8f8;
}

.custom-create-another h3 {
  margin: 0;
  font-size: 1.1rem;
}

.custom-create-another p {
  color: var(--color-text-sub);
  font-size: 0.9rem;
}

.custom-create-another .button {
  justify-self: start;
  margin-top: 0.2rem;
}

.is-custom-show-mode,
.is-custom-sample-mode {
  overflow: hidden;
}

.custom-sample-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(21, 18, 20, 0.62);
}

.custom-sample-modal {
  width: min(100%, 760px);
  max-height: min(90vh, 900px);
  max-height: min(90dvh, 900px);
  overflow-y: auto;
  border-radius: 22px;
  background: #f7f3f4;
  box-shadow: 0 24px 70px rgba(19, 13, 16, 0.32);
  overscroll-behavior: contain;
}

.custom-sample-modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #e1d5d9;
  background: rgba(255, 255, 255, 0.97);
}

.custom-sample-modal-header h2,
.custom-sample-modal-header p {
  margin: 0;
}

.custom-sample-modal-header h2 {
  color: var(--color-text-main);
  font-size: 1.35rem;
}

.custom-sample-modal-header p {
  margin-top: 0.3rem;
  color: var(--color-text-sub);
  font-size: 0.86rem;
  line-height: 1.4;
}

.custom-sample-modal-content {
  padding: 1rem;
}

.custom-sample-generated-card .custom-card-paper {
  box-shadow:
    0 22px 46px rgba(44, 32, 37, 0.13),
    0 6px 14px rgba(44, 32, 37, 0.07);
}

.is-custom-show-mode .site-header,
.is-custom-show-mode .bottom-nav,
.is-custom-show-mode .site-footer,
.is-custom-show-mode .skip-link {
  display: none !important;
}

.custom-show-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-content: start;
  gap: 1rem;
  overflow-y: auto;
  padding: 1rem max(1rem, calc((100vw - 720px) / 2));
  background: #f1edec;
}

.custom-show-controls {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: 12px;
  background: rgba(241, 237, 236, 0.96);
}

.custom-generated-card.is-show-mode {
  width: min(100%, 680px);
  min-height: min(760px, calc(100vh - 100px));
}

.custom-generated-card.is-show-mode .custom-card-paper {
  min-height: inherit;
  align-content: center;
  box-shadow:
    0 24px 52px rgba(44, 32, 37, 0.14),
    0 6px 16px rgba(44, 32, 37, 0.08);
}

@media (max-width: 640px) {
  .custom-food-card-mvp-page .guide-page-header {
    padding-top: 0.8rem;
  }

  .custom-food-card-mvp-page .guide-page-header h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .custom-food-card-workspace {
    gap: 1rem;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .custom-choice-list {
    grid-template-columns: 1fr;
  }

  .custom-choice-card {
    min-height: 92px;
  }

  .custom-reason-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .custom-reason-button {
    border-radius: 10px;
    text-align: left;
  }

  .custom-sample-preview {
    grid-template-columns: 1fr;
  }

  .custom-sample-preview .button {
    justify-self: start;
  }

  .custom-ingredient-grid {
    gap: 0.45rem;
    padding: 0.6rem;
  }

  .custom-ingredient-button {
    grid-template-columns: 1.4rem minmax(0, 1fr);
    gap: 0.4rem;
    min-height: 66px;
    padding: 0.55rem;
  }

  .custom-ingredient-check {
    width: 1.35rem;
    height: 1.35rem;
  }

  .custom-step-actions .button,
  .custom-review-actions .button,
  .custom-ready-actions .button {
    min-width: 0;
  }

  .custom-card-paper {
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 19px 16px 20px 17px;
  }

  .custom-generated-card-message {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
  }

  .custom-card-response-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-card-response-option:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.375rem);
    justify-self: center;
  }

  .custom-review-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .custom-ready-actions {
    grid-template-columns: 1fr;
  }

  .custom-sample-modal-backdrop {
    place-items: end center;
    padding: 0;
  }

  .custom-sample-modal {
    width: 100%;
    height: 88vh;
    height: 88dvh;
    max-height: 88vh;
    max-height: 88dvh;
    border-radius: 22px 22px 0 0;
  }

  .custom-sample-modal-content {
    padding: 0.75rem;
  }

  .custom-show-overlay {
    padding: 0.5rem;
  }

  .custom-generated-card.is-show-mode {
    min-height: calc(100vh - 84px);
  }

  .custom-generated-card.is-show-mode .custom-card-paper {
    min-height: inherit;
    border-radius: 19px 15px 20px 16px;
  }

  .custom-card-topline {
    align-items: flex-start;
  }

  .custom-card-purpose {
    max-width: 7rem;
    padding-top: 0.25rem;
    font-size: 0.62rem;
    text-align: right;
  }

  .custom-card-message-sheet {
    gap: 1rem;
    padding: 1.3rem 0.8rem 1rem;
    border-radius: 17px 13px 19px 15px;
    box-shadow:
      6px 7px 0 #efd0d1,
      0 14px 28px rgba(65, 43, 49, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .custom-card-message-sheet::after {
    width: 40px;
    height: 40px;
    border-radius: 0 13px 0 12px;
  }

  .custom-card-main-line {
    font-size: clamp(1.35rem, 6.7vw, 1.75rem);
  }

  .custom-card-support-line {
    font-size: clamp(1.08rem, 5.4vw, 1.4rem);
  }

  .custom-card-closing-line {
    font-size: clamp(0.98rem, 4.3vw, 1.15rem);
  }

  .custom-card-ingredient-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .custom-card-ingredient-tiles[data-ingredient-count="1"] {
    grid-template-columns: 1fr;
  }

  .custom-card-ingredient-tile {
    min-height: 90px;
    padding: 0.7rem 0.45rem;
  }

  .custom-card-point-note {
    gap: 0.45rem;
    justify-content: flex-start;
    padding-inline: 0.65rem;
  }

  .custom-card-point-note > span {
    font-size: 1.3rem;
  }

  .custom-card-staff-heading {
    grid-template-columns: minmax(12px, 1fr) auto auto minmax(12px, 1fr);
    gap: 0.35rem;
  }

  .custom-card-staff-section .custom-card-response-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.35rem;
  }

  .custom-card-staff-section .custom-card-response-option {
    min-height: 112px;
    padding: 0.55rem 0.25rem;
  }

  .custom-card-staff-section .custom-card-response-option:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .custom-card-staff-section .custom-card-response-option strong {
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }

  .custom-card-traveler-notes article {
    grid-template-columns: 2.1rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.72rem;
  }

  .custom-card-traveler-notes article > span {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .custom-ingredient-grid {
    grid-template-columns: 1fr;
  }

  .custom-confirm-summary > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* Custom Food Card — reference-matched completed card */
.custom-generated-card {
  --custom-card-navy: #4a5a75;
  --custom-card-pink: #dc8d9a;
  --custom-card-pink-soft: #f7ebeb;
  --custom-card-paper: #f8f7f8;
  width: min(100%, 620px);
  margin-block: 0.8rem 1.1rem;
}

.custom-generated-card::before,
.custom-generated-card::after {
  display: none;
}

.custom-card-paper {
  gap: 0;
  padding: 1rem;
  border-radius: 13px;
  background: var(--custom-card-paper);
  box-shadow:
    0 16px 34px rgba(50, 57, 70, 0.16),
    0 3px 9px rgba(50, 57, 70, 0.08);
}

.custom-card-topline {
  min-height: 48px;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid #dddde1;
}

.custom-card-purpose {
  display: none;
}

.custom-card-brand {
  gap: 0.55rem;
  padding: 0;
  border-radius: 0;
  color: var(--custom-card-navy);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.custom-card-brand::before,
.custom-card-brand::after {
  display: none;
}

.custom-card-brand-mark {
  width: 36px;
  height: 31px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #526783 0 32%, #d88391 33% 65%, #efb0b7 66% 100%);
  clip-path: polygon(0 3%, 38% 18%, 72% 4%, 64% 39%, 100% 30%, 65% 56%, 48% 100%, 38% 58%, 8% 48%, 27% 34%);
  filter: drop-shadow(0 2px 1px rgba(55, 61, 75, 0.18));
}

.custom-card-brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.02;
}

.custom-card-brand-copy > span {
  color: var(--custom-card-pink);
  font-size: 0.78rem;
  font-weight: 800;
}

.custom-card-brand-copy > strong {
  color: var(--custom-card-navy);
  font-size: 0.96rem;
  font-weight: 850;
}

.custom-card-message-sheet {
  gap: 1.4rem;
  padding: 1.1rem 0 2rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.custom-card-message-sheet::after {
  display: none;
}

.custom-card-type-label {
  padding: 0.3rem 0.85rem 0.27rem;
  clip-path: none;
  border-radius: 999px;
  color: #fff;
  background: var(--custom-card-pink);
  font-size: clamp(0.58rem, 1.5vw, 0.7rem);
  letter-spacing: 0.04em;
  box-shadow: none;
}

.custom-card-main-copy {
  max-width: 34rem;
  gap: 0.8rem;
  color: var(--custom-card-navy);
}

.custom-card-main-line {
  color: var(--custom-card-navy);
  font-size: clamp(1.5rem, 4.25vw, 1.9rem);
  font-weight: 620;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.custom-card-support-line {
  color: var(--custom-card-navy);
  font-size: clamp(1.25rem, 3.8vw, 1.65rem);
  font-weight: 650;
  line-height: 1.55;
}

.custom-card-ingredient-area {
  position: relative;
  width: min(100%, 560px);
  gap: 1rem;
  margin: 0 auto;
  padding: 1.2rem 1.4rem 1rem;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 8px 18px rgba(58, 65, 78, 0.13),
    0 2px 5px rgba(58, 65, 78, 0.07);
}

.custom-card-ingredient-area > header {
  position: relative;
  width: max-content;
  max-width: calc(100% - 1.5rem);
  min-width: 0;
  justify-self: center;
  gap: 0.08rem;
  margin-top: -1.2rem;
  padding: 0.42rem 1rem 0.5rem;
  border: 1px solid rgba(220, 141, 154, 0.16);
  border-top: 0;
  border-radius: 0 0 42% 42% / 0 0 15% 15%;
  color: var(--custom-card-navy);
  background: #f8ecef;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  transform: none;
}

.custom-card-capture-heading-bg {
  display: none;
}

.custom-card-capture-heading-svg {
  width: 100%;
  height: auto;
  display: block;
}

.custom-card-ingredient-heading-copy {
  display: grid;
  gap: 0.08rem;
  justify-items: center;
  text-align: center;
}

.custom-card-ingredient-area > header strong {
  color: var(--custom-card-navy);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.custom-card-ingredient-area > header small {
  color: rgba(220, 141, 154, 0.82);
  font-size: 0.56rem;
  font-weight: 550;
  line-height: 1.25;
}

.custom-card-ingredient-tiles,
.custom-card-ingredient-tiles[data-ingredient-count="1"],
.custom-card-ingredient-tiles[data-ingredient-count="2"],
.custom-card-ingredient-tiles[data-ingredient-count="3"] {
  max-width: 290px;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.custom-card-ingredient-tile,
.custom-card-ingredient-tile:nth-child(even),
.custom-card-ingredient-tile:nth-child(odd) {
  min-height: 0;
  gap: 0.08rem;
  padding: 0;
  clip-path: none;
  color: var(--custom-card-navy);
  background: transparent;
  filter: none;
  transform: none;
}

.custom-card-ingredient-tile strong {
  color: var(--custom-card-navy);
  font-size: clamp(0.94rem, 2.35vw, 1.1rem);
  font-weight: 600;
  line-height: 1.3;
}

.custom-card-ingredient-tile small {
  color: var(--custom-card-pink);
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.25;
}

.custom-card-staff-section {
  gap: 1rem;
  margin: 0 -1rem -1rem;
  padding: 1.9rem 1.35rem 1.25rem;
  border-radius: 0 0 13px 13px;
  background: var(--custom-card-pink-soft);
}

.custom-card-staff-heading {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0.12rem;
  justify-items: center;
  color: var(--custom-card-navy);
  text-align: center;
}

.custom-card-staff-heading > span {
  display: none;
}

.custom-card-staff-heading strong {
  color: var(--custom-card-navy);
  font-size: 1.35rem;
  font-weight: 650;
}

.custom-card-staff-heading small {
  color: var(--custom-card-pink);
  font-size: 0.72rem;
  font-weight: 700;
}

.custom-card-staff-message {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: var(--custom-card-navy);
  font-size: clamp(0.9rem, 2.5vw, 1.03rem);
  font-weight: 650;
  line-height: 1.65;
  text-align: center;
  box-shadow: none;
}

.custom-card-staff-message > span {
  display: block;
}

.custom-card-point-note {
  --custom-card-point-icon-size: 1.6rem;
  width: min(100%, 24rem);
  display: grid;
  grid-template-columns: var(--custom-card-point-icon-size) minmax(0, 1fr) var(--custom-card-point-icon-size);
  gap: 0.35rem;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  justify-items: center;
  padding: 0;
  border-radius: 0;
  color: var(--custom-card-navy);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.custom-card-point-note::after {
  content: "";
  width: var(--custom-card-point-icon-size);
  height: 1px;
}

.custom-card-point-note > div {
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.custom-card-point-icon {
  width: var(--custom-card-point-icon-size);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateY(0.02rem);
}

.custom-card-point-note strong {
  color: var(--custom-card-navy);
  font-size: 0.94rem;
}

.custom-card-point-note small {
  color: var(--custom-card-navy);
  font-size: 0.64rem;
  text-align: center;
}

.custom-card-staff-section .custom-card-response-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0.65rem;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 8px 18px rgba(58, 65, 78, 0.13),
    0 2px 5px rgba(58, 65, 78, 0.07);
}

.custom-card-staff-section .custom-card-response-option,
.custom-card-staff-section .custom-card-response-option:nth-child(1),
.custom-card-staff-section .custom-card-response-option:nth-child(2),
.custom-card-staff-section .custom-card-response-option:nth-child(3) {
  min-height: 126px;
  gap: 0.3rem;
  padding: 0.6rem 0.35rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.custom-card-staff-section .custom-card-response-option + .custom-card-response-option {
  border-left: 1px solid #ece9eb;
}

.custom-card-response-symbol {
  width: clamp(3.2rem, 7vw, 4rem);
  height: clamp(3.2rem, 7vw, 4rem);
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.custom-card-staff-section .custom-card-response-option strong {
  color: var(--custom-card-navy);
  font-size: clamp(0.9rem, 2.3vw, 1.05rem);
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.custom-card-staff-section .custom-card-response-option small {
  color: var(--custom-card-pink);
  font-size: clamp(0.53rem, 1.35vw, 0.64rem);
  font-weight: 750;
}

.custom-card-paper > .custom-card-short-disclaimer,
.custom-card-staff-section > .custom-card-short-disclaimer {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  color: #5e626c;
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.custom-card-short-disclaimer::before {
  content: "!";
  grid-row: 1;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--custom-card-pink);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.custom-card-short-disclaimer p {
  grid-column: 2;
  margin: 0;
  align-self: center;
}

.custom-card-cross-contact-note {
  color: #8e5362;
}

.custom-sample-generated-card .custom-card-paper,
.custom-generated-card.is-show-mode .custom-card-paper {
  min-height: 0;
  align-content: initial;
  box-shadow:
    0 16px 34px rgba(50, 57, 70, 0.16),
    0 3px 9px rgba(50, 57, 70, 0.08);
}

.custom-generated-card.is-show-mode {
  min-height: 0;
}

.custom-ready-actions [data-custom-show] {
  border-color: var(--custom-card-navy, #536783);
  color: #fff;
  background: var(--custom-card-navy, #536783);
}

.custom-ready-actions [data-custom-save],
.custom-ready-actions [data-custom-restart] {
  border-color: #e68ba3;
  color: #fff;
  background: #e68ba3;
}

@media (max-width: 640px) {
  .custom-card-paper {
    padding: 0.7rem;
    border-radius: 11px;
  }

  .custom-card-topline {
    min-height: 43px;
    padding-bottom: 0.6rem;
  }

  .custom-card-brand-mark {
    width: 31px;
    height: 27px;
  }

  .custom-card-brand-copy > span {
    font-size: 0.68rem;
  }

  .custom-card-brand-copy > strong {
    font-size: 0.84rem;
  }

  .custom-card-message-sheet {
    gap: 1.15rem;
    padding: 0.9rem 0 1.5rem;
    border-radius: 0;
    box-shadow: none;
  }

  .custom-card-main-line {
    font-size: clamp(1.18rem, 5.35vw, 1.45rem);
  }

  .custom-card-support-line {
    font-size: clamp(1.05rem, 4.9vw, 1.3rem);
  }

  .custom-card-ingredient-area {
    width: calc(100% - 0.5rem);
    gap: 0.9rem;
    padding: 1rem 0.8rem 0.85rem;
  }

  .custom-card-ingredient-tiles,
  .custom-card-ingredient-tiles[data-ingredient-count="1"],
  .custom-card-ingredient-tiles[data-ingredient-count="2"],
  .custom-card-ingredient-tiles[data-ingredient-count="3"] {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .custom-card-staff-section {
    margin: 0 -0.7rem -0.7rem;
    padding: 1.55rem 0.7rem 1rem;
    border-radius: 0 0 11px 11px;
  }

  .custom-card-staff-heading strong {
    font-size: 1.18rem;
  }

  .custom-card-staff-message {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .custom-card-point-note {
    --custom-card-point-icon-size: 1.35rem;
    justify-content: center;
    padding-inline: 0;
  }

  .custom-card-point-icon {
    width: var(--custom-card-point-icon-size);
  }

  .custom-card-staff-section .custom-card-response-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.35rem;
  }

  .custom-card-staff-section .custom-card-response-option,
  .custom-card-staff-section .custom-card-response-option:nth-child(1),
  .custom-card-staff-section .custom-card-response-option:nth-child(2),
  .custom-card-staff-section .custom-card-response-option:nth-child(3) {
    min-height: 108px;
    padding: 0.5rem 0.16rem;
  }

  .custom-card-staff-section .custom-card-response-option:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .custom-card-response-symbol {
    width: clamp(2.65rem, 11vw, 3.15rem);
    height: clamp(2.65rem, 11vw, 3.15rem);
  }

  .custom-card-staff-section .custom-card-response-option strong {
    font-size: clamp(0.64rem, 2.75vw, 0.82rem);
    letter-spacing: -0.015em;
  }

  .custom-card-staff-section .custom-card-response-option small {
    font-size: 0.48rem;
  }

  .custom-generated-card.is-show-mode,
  .custom-generated-card.is-show-mode .custom-card-paper {
    min-height: 0;
    border-radius: 11px;
  }
}

/* Buttons stay flat across the site; cards and paper surfaces may keep their shadows. */
button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  box-shadow: none !important;
}

.custom-food-card-mvp-page [data-custom-next] {
  border-color: #536783;
  color: #fff;
  background: #536783;
}

.custom-food-card-mvp-page [data-custom-back] {
  border-color: #e68ba3;
  color: #fff;
  background: #e68ba3;
}

.site-header .brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 2.55rem;
  border: 0;
  border-radius: 0;
  background: url("./assets/brand/bird-logo.png") center / contain no-repeat;
  box-shadow: none;
  filter: none;
  transform: scale(1.2);
  transform-origin: center;
}

.site-header .brand-mark::before,
.site-header .brand-mark::after {
  display: none !important;
  content: none !important;
}

.site-header .brand-name {
  display: grid;
  gap: 0.02rem;
  justify-items: start;
  line-height: 1;
}

.site-header .brand-name-japan {
  color: #d39898;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.site-header .brand-name-first {
  color: #4a5a75;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.home-page .finder-group-header h3 {
  color: #e07d99 !important;
}

.hero-title-letter-w {
  color: #cc6f6d;
}

.hero-title-letter-h {
  color: #d3a54a;
}

.hero-title-letter-a {
  color: #699bc8;
}

.hero-title-letter-t {
  color: #cd87aa;
}

.hero-title-letter-apostrophe {
  color: #dea47d;
}

.hero-title-letter-s {
  color: #7681e3;
}

.guide-page .colorful-first span:nth-child(1) {
  color: #cc6f6d;
}

.guide-page .colorful-first span:nth-child(2) {
  color: #d3a54a;
}

.guide-page .colorful-first span:nth-child(3) {
  color: #699bc8;
}

.guide-page .colorful-first span:nth-child(4) {
  color: #cd87aa;
}

.guide-page .colorful-first span:nth-child(5) {
  color: #7681e3;
}

.custom-card-brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 2.55rem;
  border-radius: 0;
  background: url("./assets/brand/bird-logo.png") center / contain no-repeat;
  clip-path: none;
  filter: none;
  transform: scale(1.2);
  transform-origin: center;
}

.custom-card-brand-copy > span {
  color: #d39898;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.custom-card-brand-copy > strong {
  color: #4a5a75;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.home-page .poster-cover .hero-title {
  text-shadow:
    0 0 1px rgba(242, 242, 242, 0.82),
    0 1px 4px rgba(242, 242, 242, 0.58);
}

@media (max-width: 640px) {
  .custom-confirm-summary {
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .custom-confirm-summary > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .custom-confirm-summary > div + div {
    padding-top: 0.75rem;
    border-top: 1px solid #e7dce0;
  }

  .custom-confirm-summary > div > span {
    display: block;
  }

  .custom-confirm-summary > div > strong {
    display: block;
    overflow-wrap: anywhere;
  }

  .custom-confirm-items {
    gap: 0.4rem;
    padding: 0;
    list-style: none;
  }

  .custom-confirm-items li {
    min-width: 0;
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 8px;
    background: #fffdfd;
    overflow-wrap: anywhere;
  }

  .custom-confirm-item-en {
    color: #827d85;
  }
}

/* Custom Food Card action hierarchy: navy and muted rose only. */
.custom-food-card-mvp-page .button.secondary {
  border-color: #e3d7db;
  color: #725765;
  background: #f5edef;
}

.custom-food-card-mvp-page [data-custom-next],
.custom-food-card-mvp-page [data-custom-show] {
  border-color: #536783;
  color: #fff;
  background: #536783;
}

.custom-food-card-mvp-page [data-custom-create] {
  border-color: #b55470;
  color: #fff;
  background: #b55470;
}

.custom-food-card-mvp-page .custom-sample-preview-button,
.custom-food-card-mvp-page [data-custom-open-sample] {
  border: 0 !important;
  color: #764054 !important;
  background: #ebcbd4 !important;
  opacity: 1 !important;
}

.custom-food-card-mvp-page [data-custom-save],
.custom-food-card-mvp-page [data-custom-restart] {
  border-color: #e0b7c3;
  color: #8f4058;
  background: #f2dce3;
}

.custom-food-card-mvp-page [data-custom-back],
.custom-food-card-mvp-page [data-custom-close-sample],
.custom-food-card-mvp-page [data-custom-close-show] {
  border: 0;
  color: #3f526d;
  background: #cdbac1;
}

.custom-show-overlay [data-custom-close-show],
.custom-sample-modal [data-custom-close-sample] {
  border: 0;
  color: #3f526d;
  background: #cdbac1;
}

.custom-show-overlay [data-custom-save] {
  border-color: #e0b7c3;
  color: #8f4058;
  background: #f2dce3;
}

/* Food TOP first moves: restore the compact category-card layout. */
.food-page #food-first-moves .food-guide-card {
  min-height: 0;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.2rem 0.85rem;
  padding: 0.9rem 1rem;
}

.food-page #food-first-moves .food-guide-card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 3.4rem;
  height: 3.4rem;
  align-self: center;
}

.food-page #food-first-moves .food-guide-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 1.08rem;
  line-height: 1.18;
}

.food-page #food-first-moves .food-guide-card-first-move {
  min-height: 0;
  grid-column: 2;
  grid-row: 2;
  display: block;
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
}

.move-page .guide-card > .category-guide-card-first-move,
.relax-page .guide-card > .category-guide-card-first-move,
.culture-page .guide-card > .category-guide-card-first-move,
.help-page .guide-card > .category-guide-card-first-move {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

.food-page #food-first-moves .food-guide-card-first-move p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (min-width: 761px) {
  .food-page #food-first-moves .food-guide-card {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.25rem 1rem;
    padding: 1rem 1.1rem;
  }

  .food-page #food-first-moves .food-guide-card-icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}

/* Other category TOP first moves: match the compact Food TOP cards. */
.move-page .category-guide-card,
.relax-page .category-guide-card,
.culture-page .category-guide-card,
.help-page .category-guide-card {
  min-height: 0;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.2rem 0.85rem;
  padding: 0.9rem 1rem;
}

.move-page .category-guide-card-icon,
.relax-page .category-guide-card-icon,
.culture-page .category-guide-card-icon,
.help-page .category-guide-card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 3.4rem;
  height: 3.4rem;
  align-self: center;
}

.move-page .category-guide-card h3,
.relax-page .category-guide-card h3,
.culture-page .category-guide-card h3,
.help-page .category-guide-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 1.08rem;
  line-height: 1.18;
}

.move-page .category-guide-card-first-move,
.relax-page .category-guide-card-first-move,
.culture-page .category-guide-card-first-move,
.help-page .category-guide-card-first-move {
  min-height: 0;
  grid-column: 2;
  grid-row: 2;
  display: block;
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
}

.move-page .category-guide-card-first-move p,
.relax-page .category-guide-card-first-move p,
.culture-page .category-guide-card-first-move p,
.help-page .category-guide-card-first-move p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (min-width: 761px) {
  .move-page .category-guide-card,
  .relax-page .category-guide-card,
  .culture-page .category-guide-card,
  .help-page .category-guide-card {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.25rem 1rem;
    padding: 1rem 1.1rem;
  }

  .move-page .category-guide-card-icon,
  .relax-page .category-guide-card-icon,
  .culture-page .category-guide-card-icon,
  .help-page .category-guide-card-icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.guide-page .guide-tip {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid var(--guide-accent);
  background: var(--guide-soft);
}

.guide-page .guide-tip strong,
.guide-page .guide-tip p {
  margin: 0;
}

.guide-page .guide-tip strong {
  color: var(--guide-accent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Food Card samples share the Custom Food Card visual language. */
.food-card-page .food-sample-card {
  border: 0;
  background: #f8f7f8;
}

.food-card-page .food-card-label {
  color: #fff;
  background: #dc8d9a;
}

.food-card-page .food-sample-card h3,
.food-card-page .food-list-preview {
  color: #4a5a75;
}

.food-detail-page .food-sample-detail-card {
  padding: 0;
}

.food-detail-page .food-sample-generated-card {
  margin: 0 auto;
}

/* Mobile navigation: compact header menu replaces the floating bottom bar. */
.mobile-menu-toggle,
.mobile-site-menu {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0 !important;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .bottom-nav {
    display: none !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 20;
    min-height: 3.75rem;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.45rem 1rem !important;
    overflow: visible;
  }

  .mobile-menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.27rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #4a5a75;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid rgba(74, 90, 117, 0.35);
    outline-offset: 2px;
  }

  .mobile-menu-toggle > span {
    width: 1.3rem;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-menu-toggle.is-open > span:nth-child(1) {
    transform: translateY(0.39rem) rotate(45deg);
  }

  .mobile-menu-toggle.is-open > span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open > span:nth-child(3) {
    transform: translateY(-0.39rem) rotate(-45deg);
  }

  .mobile-site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    z-index: 2;
    width: min(19rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 5rem);
    display: grid;
    gap: 0.18rem;
    overflow-y: auto;
    padding: 0.6rem;
    border: 1px solid #eadfe2;
    border-radius: 0 0 16px 16px;
    background: #fcf9f8;
    box-shadow: 0 14px 30px rgba(52, 58, 72, 0.14);
  }

  .mobile-site-menu[hidden] {
    display: none;
  }

  .mobile-site-menu a {
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    color: #4a5a75;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-site-menu a:hover,
  .mobile-site-menu a:focus-visible,
  .mobile-site-menu a.is-active {
    color: #9f566d;
    background: #f6e7eb;
  }

  .mobile-site-menu-custom {
    margin-top: 0.3rem;
    padding-top: 0.8rem !important;
    border-top: 1px solid #eadfe2;
    border-radius: 0 0 10px 10px !important;
  }

  /* Keep staff-facing Japanese legible on generated and sample Food Cards. */
  .custom-ready-step .custom-generated-card {
    width: calc(100% + 1.8rem);
    max-width: none;
    margin-inline: -0.9rem;
  }

  .custom-generated-card .custom-card-main-line {
    word-break: normal;
    word-break: auto-phrase;
    overflow-wrap: normal;
  }

  .custom-ready-step .custom-card-main-copy {
    width: 100%;
    max-width: 100%;
  }

  .custom-ready-step .custom-card-main-line {
    font-size: clamp(1.1rem, 5.1vw, 1.32rem);
    line-height: 1.5;
    letter-spacing: 0;
  }

  .custom-card-ingredient-area > header {
    max-width: calc(100% - 0.75rem);
    padding-inline: 0.85rem;
  }

  .custom-card-ingredient-area > header strong {
    font-size: clamp(0.86rem, 3.8vw, 0.96rem);
    white-space: nowrap;
  }

  .custom-card-ingredient-tile strong {
    font-size: clamp(1.05rem, 4.6vw, 1.18rem);
    line-height: 1.25;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .custom-card-point-note {
    --custom-card-point-icon-size: 2rem;
    width: min(100%, 22rem);
    grid-template-columns: var(--custom-card-point-icon-size) minmax(0, auto) var(--custom-card-point-icon-size);
    gap: 0.25rem;
  }

  .custom-card-point-icon {
    width: var(--custom-card-point-icon-size);
    transform: translateY(0.02rem);
  }

  .custom-card-staff-section .custom-card-response-option,
  .custom-card-staff-section .custom-card-response-option:nth-child(1),
  .custom-card-staff-section .custom-card-response-option:nth-child(2),
  .custom-card-staff-section .custom-card-response-option:nth-child(3) {
    padding-inline: 0.08rem;
  }

  .custom-card-staff-section .custom-card-response-option strong {
    font-size: clamp(0.73rem, 3.45vw, 0.86rem);
    letter-spacing: -0.025em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }
}

/* Export-only simplifications for html2canvas. */
.custom-card-paper.is-capturing-card {
  padding-top: clamp(1.6rem, 6vw, 2rem);
  padding-bottom: 1.4rem;
}

.custom-card-paper.is-capturing-card .custom-card-staff-section {
  margin-bottom: -1.4rem;
  padding-bottom: 2rem;
}

.custom-card-paper.is-capturing-card .custom-card-ingredient-area > header {
  position: relative;
  width: min(66%, 18rem);
  max-width: calc(100% - 1rem);
  aspect-ratio: 50 / 11;
  min-height: clamp(3.1rem, 10vw, 4.6rem);
  margin-top: -1rem;
  align-content: center;
  padding: 0.35rem 1.1rem 0.68rem;
  border: 0 !important;
  border-radius: 0;
  overflow: visible;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none;
  isolation: isolate;
}

.custom-card-paper.is-capturing-card .custom-card-ingredient-area > header::before,
.custom-card-paper.is-capturing-card .custom-card-ingredient-area > header::after,
.custom-card-paper.is-capturing-card .custom-card-capture-heading-bg::before,
.custom-card-paper.is-capturing-card .custom-card-capture-heading-bg::after,
.custom-card-paper.is-capturing-card .custom-card-ingredient-heading-copy::before,
.custom-card-paper.is-capturing-card .custom-card-ingredient-heading-copy::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.custom-card-paper.is-capturing-card .custom-card-capture-heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  display: block;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  line-height: 0;
}

.custom-card-paper.is-capturing-card .custom-card-capture-heading-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  border: 0 !important;
  background: transparent !important;
}

.custom-card-paper.is-capturing-card .custom-card-ingredient-heading-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.custom-card-paper.is-capturing-card .custom-card-ingredient-heading-copy strong,
.custom-card-paper.is-capturing-card .custom-card-ingredient-heading-copy small {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.custom-card-paper.is-capturing-card .custom-card-point-note {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  padding-inline: 0;
}

.custom-card-paper.is-capturing-card .custom-card-point-note::after {
  display: none;
}

.custom-card-paper.is-capturing-card .custom-card-point-icon {
  margin-right: 0.05rem;
}

/* Keep Show card controls and content below iPhone display cutouts. */
.custom-show-overlay {
  padding-top: calc(1rem + env(safe-area-inset-top, 0px));
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

.custom-show-controls {
  top: env(safe-area-inset-top, 0px);
}

@media (max-width: 640px) {
  .custom-show-overlay {
    padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Generated Food Card image preview. */
.is-custom-image-preview-mode {
  overflow: hidden;
}

.custom-image-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(31, 36, 47, 0.7);
}

.custom-image-preview-modal {
  width: min(100%, 720px);
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  display: grid;
  gap: 0.85rem;
  overflow-y: auto;
  padding: 1rem;
  border-radius: 18px;
  background: #f8f5f5;
  box-shadow: 0 24px 64px rgba(25, 29, 38, 0.3);
  overscroll-behavior: contain;
}

.custom-image-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.custom-image-preview-header h2,
.custom-image-preview-header p {
  margin: 0;
}

.custom-image-preview-header h2 {
  color: #4a5a75;
  font-size: 1.35rem;
}

.custom-image-preview-header p {
  margin-top: 0.2rem;
  color: #6b6870;
  font-size: 0.88rem;
  line-height: 1.4;
}

.custom-image-preview-frame {
  display: grid;
  place-items: start center;
  overflow: auto;
  padding: 0.65rem;
  border-radius: 12px;
  background: #e9e5e6;
}

.custom-image-preview-frame img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  border-radius: 10px;
  -webkit-touch-callout: default;
  user-select: auto;
}

.custom-image-preview-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .custom-image-preview-backdrop {
    place-items: end center;
    padding: 0;
  }

  .custom-image-preview-modal {
    width: 100%;
    max-height: 94vh;
    max-height: 94dvh;
    padding: 0.85rem;
    border-radius: 20px 20px 0 0;
  }

  .custom-image-preview-header {
    align-items: center;
  }

  .custom-image-preview-frame {
    padding: 0.45rem;
  }

  .custom-image-preview-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }

  .custom-image-preview-actions .button {
    width: 100%;
  }

}
