@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --bg: #fdf6ec;
  --bg-alt: #f7e9d2;
  --bg-card: #ffffff;
  --ink: #26241f;
  --ink-light: #756d5c;
  --primary: #e08324;
  --primary-dark: #c56c15;
  --primary-tint: #fbe2bc;
  --accent: #1f3a5f;
  --accent-dark: #16273f;
  --gold: #a9863f;
  --border: #eddab3;
  --shadow: 0 10px 28px rgba(40, 30, 15, 0.08);
  --hotpepper: #ec4899;
  --line-green: #06c755;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.02em;
  padding-bottom: 0;
}

body.has-mobile-cta {
  padding-bottom: 68px;
}

@media (min-width: 720px) {
  body.has-mobile-cta {
    padding-bottom: 0;
  }
}

h1, h2, h3 {
  font-family: "Shippori Mincho", serif;
  color: var(--primary-dark);
  line-height: 1.5;
  margin: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  padding: 0;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */
.top-bar {
  background: var(--accent-dark);
  color: #e7e2d3;
  font-size: 0.78rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  gap: 12px;
}

.top-bar .top-bar-hours {
  display: none;
}

@media (min-width: 560px) {
  .top-bar .top-bar-hours {
    display: inline;
  }
}

.top-bar a {
  color: #f4ead9;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 233, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
  row-gap: 6px;
  gap: 16px;
}

@media (min-width: 860px) {
  .site-header nav {
    order: 3;
    flex-basis: 100%;
  }
}

.brand {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.brand small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--ink-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 860px) {
  .nav-links {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px 15px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    overflow-x: auto;
  }
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-close-item {
  display: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-tel {
  display: none;
}

@media (min-width: 860px) {
  .header-tel {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-family: "Shippori Mincho", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
  }
  .header-tel .tel-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--ink-light);
    letter-spacing: 0.08em;
  }
}

.header-actions .header-cta,
.header-actions .header-line {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .header-cta,
  .header-actions .header-line {
    display: inline-flex;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (min-width: 640px) and (max-width: 1080px) {
  .header-cta,
  .header-line {
    font-size: 0.78rem;
    padding: 9px 12px;
  }
}

@media (min-width: 640px) and (max-width: 859px) {
  .header-actions {
    gap: 8px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .brand small {
    display: none;
  }
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer;
}

@media (max-width: 859px) {
  .site-header nav {
    order: 3;
    flex-basis: 100%;
  }
  .nav-links {
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links li {
    border-top: 1px solid var(--border);
  }
  .nav-close-item {
    display: block;
    border-top: none !important;
  }
  .nav-close-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
  }
  .menu-toggle {
    display: block;
  }
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
}

@media (max-width: 719px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    box-shadow: 0 -6px 18px rgba(20, 20, 10, 0.14);
  }
  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .mobile-cta a.tel {
    background: var(--primary-dark);
    color: #fff;
  }
  .mobile-cta a.reserve {
    background: var(--accent);
    color: #fff;
  }
  .mobile-cta a.line {
    background: #06c755;
    color: #fff;
  }
}

/* Hero (home) */
.hero {
  position: relative;
  padding: 140px 0 120px;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(40, 20, 5, 0.1), rgba(20, 10, 5, 0.4));
}

.hero-photo-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
  filter: brightness(0.85) sepia(0.15);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Ambient floating particles */
.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle-field .particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(255, 217, 166, 0.55);
  animation: heroFloatUp linear infinite;
}

@keyframes heroFloatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-260px) translateX(var(--drift, 20px));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-field {
    display: none;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: none;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.3em;
  color: #e6e0d5;
  margin-bottom: 20px;
}

.hero-catch {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-catch {
    white-space: normal;
  }
}

.hero-sub {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #eee;
  font-weight: 500;
  margin: 0 0 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.6);
}

.hero .hl {
  color: #ffcf8a;
  text-shadow: 0 0 16px rgba(255, 180, 90, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
}

.hero p.lead {
  color: #fff1e0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.6);
  font-size: 1.32rem;
  max-width: 840px;
  margin: 0 auto 32px;
}

.hero-actions .btn {
  font-size: 1.05rem;
  padding: 16px 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-hp {
  background: var(--hotpepper);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}

.cta-band .btn-outline {
  color: #fff;
  border-color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.emoji-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
  margin-right: 4px;
}

.icon img,
.link-card .icon img,
.icon svg,
.link-card .icon svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card .icon.icon-img,
.link-card .icon.icon-img {
  background: none;
}

/* Voice band (compact testimonial strip, right after hero) */
.voice-band {
  background: var(--primary);
  padding: 22px 0;
}

.voice-band-label {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.voice-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.voice-band-item {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.voice-band-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.voice-band-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  flex-shrink: 0;
}

.voice-band-name {
  font-size: 0.78rem;
  color: var(--ink-light);
}

.voice-band-item .voice-stars {
  margin: 0;
  font-size: 0.78rem;
}

.voice-band-item p.comment {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink);
}

/* Photo collage (overlapping accent photo) */
.photo-collage {
  position: relative;
}

.collage-accent {
  display: none;
}

@media (min-width: 640px) {
  .collage-accent {
    display: block;
    position: absolute;
    width: 46%;
    left: -18px;
    bottom: -24px;
    border: 6px solid var(--bg-card);
    box-shadow: 0 14px 30px rgba(40, 30, 15, 0.18);
    transform: rotate(-3deg);
    z-index: 2;
  }
}

/* Minimal feature row (icon + divider, no cards) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-item {
  text-align: center;
}

.feature-item .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--ink-light);
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 640px) {
  .feature-row {
    display: flex;
    justify-content: space-between;
  }
  .feature-item {
    flex: 1;
    padding: 0 28px;
    border-left: 1px solid var(--border);
  }
  .feature-item:first-child {
    border-left: none;
    padding-left: 0;
  }
  .feature-item:last-child {
    padding-right: 0;
  }
}

/* Quick info strip */
.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.quick-info div {
  background: var(--bg-card);
  padding: 24px 20px;
  text-align: center;
}

.quick-info .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.quick-info .value {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-head.left {
  text-align: left;
}

.section-head .eyebrow {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

.section-head p.desc {
  color: var(--ink-light);
  max-width: 860px;
  margin: 16px auto 0;
}

.section-head.left p.desc {
  margin-left: 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* Quick link cards (home) */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

@media (min-width: 640px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.link-card .icon.icon-svg,
.link-card .icon.icon-img {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2.2px solid #1f3a5f;
  border-radius: 50%;
  overflow: hidden;
}

.link-card .icon.icon-svg svg {
  width: 68%;
  height: 68%;
}

.link-card .icon.icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.link-card h3 {
  font-size: 1.05rem;
}

.link-card p {
  color: var(--ink-light);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}

.link-card .link-more {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Feature cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

@media (min-width: 640px) {
  .card-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .features-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border-radius: 6px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}

.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-light);
  font-size: 0.94rem;
  margin: 0;
}

/* Review slider (voice, right after hero) — 3-up carousel, center enlarged */
.review-slider {
  position: relative;
  max-width: 1600px;
  margin: 20px auto 0;
  padding: 0 24px;
}

.review-track-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.review-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-track .review-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.58);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
}

.review-track .review-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-slide.is-center {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 18px 36px rgba(40, 30, 15, 0.28), 0 0 24px rgba(255, 255, 255, 0.5);
  z-index: 3;
  pointer-events: auto;
}

.review-slide.is-prev {
  opacity: 0.9;
  transform: translate(calc(-50% - 490px), -50%) scale(0.58);
  z-index: 2;
}

.review-slide.is-next {
  opacity: 0.9;
  transform: translate(calc(-50% + 490px), -50%) scale(0.58);
  z-index: 2;
}

@media (max-width: 720px) {
  .review-track-wrap {
    height: 240px;
  }
  .review-track .review-slide {
    width: 300px;
    height: 200px;
    transform: translate(-50%, -50%) scale(0.6);
  }
  .review-slide.is-prev {
    transform: translate(calc(-50% - 250px), -50%) scale(0.6);
  }
  .review-slide.is-next {
    transform: translate(calc(-50% + 250px), -50%) scale(0.6);
  }
}

.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

.review-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.review-nav button:hover {
  background: var(--primary-tint);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
}

.review-dots span.active {
  background: var(--primary);
}

/* Concern category cards (photo + label) */
.concern-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.concern-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.concern-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(40, 30, 15, 0.14);
}

.concern-photo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.concern-photo-card .label {
  padding: 16px 18px 20px;
  text-align: center;
}

.concern-photo-card .label .tag {
  margin-bottom: 8px;
}

.concern-photo-card h3 {
  font-size: 0.98rem;
}

button.concern-photo-card {
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
  width: 100%;
}

.concern-photo-card.active {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}

.concern-results-empty {
  text-align: center;
  color: var(--ink-light);
  padding: 30px 0 10px;
}

.concern-group {
  display: none;
}

.concern-group.is-active {
  display: block;
}

.symptom-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
}

/* Photo + text split (alternating left/right) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split.reverse .photo-frame {
    order: 2;
  }
  .split.reverse .split-text {
    order: 1;
  }
}

.split .photo-frame {
  aspect-ratio: 4 / 3;
}

.split-text .eyebrow-inline {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}

.split-text h2 {
  margin-bottom: 18px;
}

.split-text p {
  color: var(--ink-light);
}

.split-text ul.point-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-text ul.point-list li {
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink);
}

.split-text ul.point-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.split-text .section-cta {
  margin-top: 26px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-grid .photo-frame {
  aspect-ratio: 1 / 1;
}

/* Scroll-triggered photo reveals */
.reveal-photo {
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-photo.pending {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-photo.from-left.pending {
  opacity: 0;
  transform: translateX(-60px) scale(1);
}

.reveal-photo.from-right.pending {
  opacity: 0;
  transform: translateX(60px) scale(1);
}

.reveal-photo.zoom-out.pending {
  opacity: 0;
  transform: scale(1.2);
}

.gallery-grid .reveal-photo:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .reveal-photo:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .reveal-photo:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-photo,
  .reveal-photo.pending {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Generic centered CTA below a section */
.section-cta.center {
  text-align: center;
  margin-top: 40px;
}

/* Message / philosophy block */
.message-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 44px 46px;
  box-shadow: var(--shadow);
  position: relative;
}

.message-block .quote-mark {
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 26px;
}

.message-block p {
  position: relative;
  z-index: 1;
}

.message-block .highlight {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.message-block .checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message-block .checklist li {
  position: relative;
  padding-left: 28px;
}

.message-block .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.message-block-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}

.message-block-columns .checklist {
  margin-top: 0;
}

@media (min-width: 860px) {
  .message-block-columns {
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
  }

  .message-block-columns .checklist {
    gap: 16px;
    border-left: 1px solid var(--border);
    padding-left: 24px;
  }
}

/* Concept feature (large statement + team photo) */
.concept-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .concept-feature {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
}

.concept-photo {
  aspect-ratio: 4 / 3;
}

.concept-statement {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.65;
  margin: 0 0 18px;
}

.concept-statement .hl {
  position: relative;
  display: inline;
}

.concept-statement .hl::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 0.36em;
  background: var(--primary-tint);
  z-index: -1;
  transform: rotate(-1deg);
  border-radius: 2px;
}

.concept-attribution {
  color: var(--ink-light);
  font-size: 0.86rem;
  margin: 0 0 26px;
}

.concept-body {
  color: var(--ink-light);
  font-size: 0.94rem;
  margin: 0;
}

/* Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 150px;
  font-family: "Shippori Mincho", serif;
  color: var(--primary-dark);
  font-weight: 700;
  background: var(--bg-alt);
}

.hours-table td.closed {
  color: var(--accent);
  font-weight: 500;
}

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 36px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-band .hero-actions {
  justify-content: center;
}

.cta-band .btn-primary {
  background: var(--accent);
}

/* Photo frame (real photos) */
.photo-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .storefront {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.card-grid .photo-frame {
  aspect-ratio: 4 / 3;
}

.storefront .photo-frame {
  aspect-ratio: 4 / 3;
}

.storefront .caption {
  color: var(--ink-light);
  font-size: 0.9rem;
  margin-top: 14px;
}

/* Photo placeholder */
.photo-placeholder {
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  min-height: 180px;
  padding: 16px;
}

.step .photo-placeholder {
  min-height: 240px;
  margin-bottom: 16px;
}

.step .photo-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}

/* Steps (flow) — always a single row, no scrolling needed */
.step-hscroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 8px 4px 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.step-card .photo-frame {
  border: none;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
}

.step-card-body {
  padding: 16px 18px 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.step-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--ink-light);
  font-size: 0.86rem;
  margin: 0;
}

@media (max-width: 720px) {
  .step-hscroll {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .step-hscroll .step-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: visible;
  }
  .step-hscroll .step-card .photo-frame {
    width: 90px;
    height: 90px;
    aspect-ratio: auto;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 6px;
    position: relative;
  }
  .step-hscroll .step-card-body {
    padding: 12px 14px;
    flex: 1;
  }
  .step-hscroll .step-num {
    position: absolute;
    left: 60px;
    top: 60px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid #fff;
    margin: 0;
  }
  .step-hscroll .step-card h3 {
    font-size: 1.08rem;
    margin: 0 0 5px;
  }
  .step-hscroll .step-card p {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-light);
    margin: 0;
  }
}

/* Steps (flow) — vertical timeline */
.step-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 44px;
  counter-reset: step;
}

@media (min-width: 640px) {
  .step-list {
    padding-left: 64px;
  }
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.step.is-active {
  transform: translateX(6px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(224, 131, 36, 0.2);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.5s ease;
  z-index: 1;
}

@media (min-width: 640px) {
  .step::before {
    left: -50px;
  }
}

.step.is-active::before {
  background: var(--primary);
}

/* Scroll-linked connecting track (vertical timeline spine) */
.step-track {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 2px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}

@media (min-width: 640px) {
  .step-track {
    left: 15px;
  }
}

.step-track-fill {
  width: 100%;
  height: 0%;
  background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .step,
  .step::before,
  .step-track-fill {
    transition: none;
  }
}

.step h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.step p {
  color: var(--ink-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Symptom / menu cards */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-preview-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 14px;
}

@media (max-width: 639px) {
  .menu-preview-grid .symptom-body {
    padding: 14px 14px 16px;
    gap: 6px;
  }
  .menu-preview-grid .symptom-photo {
    min-height: 90px;
  }
  .menu-preview-grid .tag {
    font-size: 0.62rem;
    padding: 3px 8px;
  }
  .menu-preview-grid h3 {
    font-size: 0.95rem;
  }
  .menu-preview-grid .symptom-body p {
    font-size: 0.76rem;
    line-height: 1.6;
  }
  .menu-preview-grid .symptom-price {
    font-size: 0.72rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .menu-preview-grid .symptom-book-trigger {
    font-size: 0.72rem;
  }
  .menu-preview-grid .book-btn {
    font-size: 0.66rem;
    padding: 8px 6px;
    gap: 4px;
  }
  .menu-preview-grid .emoji-icon {
    width: 0.95em;
    height: 0.95em;
  }
}

.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.symptom-card .symptom-photo {
  min-height: 130px;
}

.symptom-card img.symptom-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* Before / after result gallery */
.result-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.result-gallery figure {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.result-gallery img {
  width: 100%;
  display: block;
}

.result-gallery figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--ink-light);
}

.symptom-card .symptom-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  letter-spacing: 0.04em;
}

.symptom-card h3 {
  font-size: 1.08rem;
}

.symptom-card p {
  color: var(--ink-light);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}

.symptom-price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: "Shippori Mincho", serif;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.symptom-price .note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  color: var(--ink-light);
}

.symptom-card .note-inline {
  font-size: 0.78rem;
  color: var(--gold);
  margin: -4px 0 0;
}

/* Booking reveal (hover lifts the card and reveals tel / HotPepper / LINE buttons;
   tapping .symptom-book-trigger provides the same reveal on touch devices) */
.symptom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symptom-card:hover,
.symptom-card.is-open {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(40, 30, 15, 0.2);
}

.symptom-book-trigger {
  display: none;
}

@media (hover: none) {
  .symptom-book-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    padding: 0;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
  }

  .symptom-book-trigger .chev {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

  .symptom-card.is-open .symptom-book-trigger .chev {
    transform: rotate(180deg);
  }
}

.symptom-book-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
}

.symptom-card:hover .symptom-book-panel,
.symptom-card.is-open .symptom-book-panel {
  max-height: 160px;
  opacity: 1;
  margin-top: 4px;
}

.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.book-btn.tel { background: var(--accent); }
.book-btn.hp { background: var(--hotpepper); }
.book-btn.line { background: var(--line-green); }

.menu-note {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--ink-light);
  font-size: 0.88rem;
  text-align: center;
}

/* Staff cards */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.staff-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px dashed var(--border);
  overflow: hidden;
}

.staff-avatar.photo {
  border-style: solid;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Team group photo */
.team-photo {
  aspect-ratio: 4 / 3;
  max-width: 720px;
  margin: 0 auto 44px;
}

.staff-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.staff-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.staff-card p.bio {
  color: var(--ink-light);
  font-size: 0.88rem;
  margin: 0;
  text-align: left;
}

.staff-specialty {
  margin-top: auto;
  padding-top: 16px;
}

.staff-specialty span {
  display: block;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 10px 10px;
  font-size: 0.74rem;
  color: var(--ink);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.staff-specialty strong {
  color: var(--primary-dark);
}

/* Patient voice photo gallery (horizontal scroll-snap) */
.voice-scroll-wrap {
  position: relative;
}

.voice-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 4px 4px 16px;
}

.voice-photo-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(40, 30, 15, 0.2);
}

.voice-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.voice-photo-card:hover img {
  transform: scale(1.06);
}

.voice-photo-card figcaption {
  padding: 18px 20px 20px;
}

.voice-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.voice-photo-card p.comment {
  color: var(--ink);
  font-size: 0.88rem;
  margin: 0;
}

.scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-light);
  margin: 0;
}

.placeholder-note {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--gold);
}

/* Contact / reservation form */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 860px) {
  .contact-panel {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.contact-card .line-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  color: #06c755;
  margin-bottom: 8px;
}

.contact-card .line-big .emoji-icon {
  width: 2em;
  height: 2em;
  margin-right: 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.contact-card .tel-big {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 8px;
}

.contact-card .tel-note {
  color: var(--ink-light);
  font-size: 0.85rem;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--ink);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

/* Badges (qualifications) */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  background: var(--accent-dark);
  color: #d6d2c4;
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h3 {
  color: #f4ead9;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-grid p, .footer-grid a {
  color: #b3aea0;
  font-size: 0.88rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: #8f8a78;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  position: relative;
}

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

.faq-item summary .q-mark {
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 26px 26px 26px;
  color: var(--ink-light);
  font-size: 0.94rem;
}

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

/* Page hero (sub pages) */
.page-hero {
  padding: 56px 0;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
}

.breadcrumb {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--ink-light);
}

.breadcrumb a {
  color: var(--accent);
}

/* Founder / representative section */
.founder-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 720px) {
  .founder-block {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.founder-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-name {
  margin-top: 16px;
  text-align: center;
}

.founder-name .role {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.founder-name .name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.founder-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-field dt {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.founder-field dd {
  margin: 0;
  line-height: 1.9;
  color: var(--ink);
}

.founder-teaser {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .founder-teaser {
    flex-direction: column;
    text-align: center;
  }
}

.founder-teaser .founder-photo {
  width: 160px;
  max-width: 160px;
  flex-shrink: 0;
}

.founder-teaser .founder-teaser-text {
  flex: 1;
}

.founder-teaser .founder-teaser-text p {
  margin: 8px 0 16px;
  color: var(--ink-light);
}
