@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600;700&family=Noto+Serif+JP:wght@500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   ヌキステ — A-editorial / 深紅 × ゴールド 会員制ラウンジ
   ============================================================ */

:root {
  --bordeaux-900: #1f060b;
  --bordeaux-800: #2a0a10;
  --bordeaux-700: #340e16;
  --bordeaux-600: #3f1019;
  --bordeaux-card: #2e0c13;
  --gold: #c9a96a;
  --gold-soft: #b8945a;
  --gold-bright: #e6c98a;
  --gold-line: rgba(201, 169, 106, 0.34);
  --gold-line-faint: rgba(201, 169, 106, 0.16);
  --ink: #f3e7d8;
  --ink-dim: #cdb89f;
  --ink-faint: #9a8166;
  --serif-jp: "Shippori Mincho", "Noto Serif JP", serif;
  --serif-lat: "Cormorant Garamond", "EB Garamond", serif;
  --sans-jp: "Noto Sans JP", sans-serif;
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans-jp);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.85;
  font-size: 15px;
  letter-spacing: 0.02em;
  background-color: var(--bordeaux-800);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(63, 16, 25, 0.55), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ============================================================
   ヘッダー
   ============================================================ */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(92px, 9vw, 132px) 22px clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, var(--bordeaux-900), var(--bordeaux-800));
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}

.topbar::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 56px);
  right: clamp(20px, 5vw, 56px);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55));
}

.back-link {
  font-family: var(--serif-lat);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  position: relative;
  white-space: nowrap;
}

.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.4s ease;
}

.back-link:hover {
  color: var(--gold-bright);
}

.back-link:hover::after {
  width: 100%;
}

.cache {
  font-family: var(--serif-lat);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

.cache strong {
  color: var(--gold);
  font-weight: 600;
}

.cache em {
  font-style: italic;
  color: var(--ink-dim);
}

/* ============================================================
   ハンバーガーメニュー
   ============================================================ */

.menu-checkbox {
  display: none;
}

.menu-toggle {
  position: fixed;
  top: 22px;
  right: clamp(20px, 5vw, 56px);
  z-index: 1100;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 40px;
  border: 1px solid var(--gold-line-faint);
  border-radius: 2px;
  background: rgba(31, 6, 11, 0.72);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--gold-line);
  background: rgba(31, 6, 11, 0.92);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 10px rgba(230, 201, 138, 0.22);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  width: min(360px, 86vw);
  height: 100vh;
  padding: 72px 22px 40px;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bordeaux-900), var(--bordeaux-800));
  border-left: 1px solid var(--gold-line);
  box-shadow: -18px 0 44px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  -webkit-overflow-scrolling: touch;
}

.menu-checkbox:checked ~ .menu-drawer {
  transform: translateX(0);
}

.menu-checkbox:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

.menu-inner {
  min-height: 100%;
}

.menu-search {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gold-line-faint);
}

.menu-search-title {
  font-family: var(--serif-jp);
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 12px;
}

.menu-input {
  width: 100%;
  margin: 8px 0;
  padding: 12px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  background: var(--bordeaux-card);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.menu-input:focus {
  border-color: var(--gold);
  background: var(--bordeaux-700);
}

.menu-input::placeholder {
  color: var(--ink-faint);
}

.menu-search-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.7;
}

.menu-search-btn {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  color: var(--bordeaux-900);
  font-family: var(--serif-jp);
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.menu-search-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.menu-areas {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--gold-line-faint);
}

.menu-area-block + .menu-area-block {
  margin-top: 34px;
}

.menu-area-block h2 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
}

/* ============================================================
   検索結果
   ============================================================ */

.search-result-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 56px) 96px;
}

/* ============================================================
   レイアウト
   ============================================================ */

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 56px) 96px;
}

/* ---------- サイドバー ---------- */

.sidebar {
  align-self: start;
  position: sticky;
  top: 36px;
}

.side-section + .side-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--gold-line-faint);
}

.side-section h2 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
}

.area-list {
  display: flex;
  flex-direction: column;
}

.area-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 4px;
  color: var(--ink-dim);
  font-size: 14px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--gold-line-faint);
  position: relative;
}

.area-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.area-list a:hover {
  color: var(--ink);
}

.area-list a:hover::before {
  width: 100%;
}

.area-list a.active {
  color: var(--gold-bright);
}

.area-list a.active::before {
  width: 100%;
  background: var(--gold-bright);
}

.area-list b {
  font-family: var(--serif-lat);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ============================================================
   一覧本文
   ============================================================ */

.content {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: var(--ink);
}

.section-head h2::before {
  content: "THERAPIST SELECTION";
  display: block;
  font-family: var(--serif-lat);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.status-tabs {
  display: flex;
  gap: 4px;
}

.status-tabs a {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  padding: 6px 16px;
  border: 1px solid var(--gold-line-faint);
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.status-tabs a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-line);
}

.status-tabs a.active {
  color: var(--bordeaux-900);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  border-color: var(--gold);
  font-weight: 600;
}

.count-line {
  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.035em;
  line-height: 1.75;
  color: var(--ink-dim);
  margin: 18px 0 36px;
}

/* ---------- 一覧リスト（縦・編集型） ---------- */

.therapist-list {
  display: flex;
  flex-direction: column;
}

.therapist-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(22px, 3vw, 40px);
  padding: 34px 0;
  border-bottom: 1px solid var(--gold-line-faint);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  animation: fadeUp 0.7s ease both;
}

.therapist-row:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.row-photo {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold-line);
  padding: 5px;
  background: var(--bordeaux-card);
  overflow: hidden;
}

.row-photo::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 169, 106, 0.18);
  pointer-events: none;
  z-index: 2;
}

.row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.therapist-row:hover .row-photo img,
.row-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.05);
}

.row-photo .row-photo-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--serif-jp);
  font-size: 60px;
  font-weight: 600;
  color: var(--gold);
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 106, 0.1), transparent 70%),
    var(--bordeaux-700);
}

.row-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.row-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 16px;
}

.row-head strong {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 30px);
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.therapist-row:hover .row-head strong {
  color: var(--gold-bright);
}

.row-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 6px;
  color: #fff;
  background: #f2387b;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.row-status--now {
  background: linear-gradient(180deg, #ff4c91, #ef2f76);
}

.row-status--today {
  gap: 7px;
  background: linear-gradient(180deg, #1ed19a, #10b981);
}

.row-status--today::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.row-status--unknown {
  background: linear-gradient(180deg, #8f7c67, #6f5d4e);
}

.row-meta {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  margin-bottom: 5px;
}

.row-meta:first-of-type {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.row-details {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 2px;
  color: var(--ink-dim);
}

.row-detail {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.row-detail-label {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 500;
}

.row-detail-value {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.row-summary {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- トップ一覧（3列カードグリッド） ---------- */

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.6vw, 18px);
  margin-top: 10px;
}

.t-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold-line-faint);
  border-radius: 10px;
  background: var(--bordeaux-card);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  animation: fadeUp 0.7s ease both;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.t-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.t-card-photo {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 106, 0.1), transparent 70%),
    var(--bordeaux-700);
}

.t-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.t-card:hover .t-card-photo img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.05);
}

.t-photo-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--serif-jp);
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 600;
  color: var(--gold);
}

.t-status {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 6px;
  color: #fff;
  background: #f2387b;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  font-family: var(--sans-jp);
  font-size: clamp(10px, 1.4vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.t-status--now {
  background: linear-gradient(180deg, #ff4c91, #ef2f76);
}

.t-status--today {
  background: linear-gradient(180deg, #1ed19a, #10b981);
}

.t-status--today::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.t-status--unknown {
  background: linear-gradient(180deg, #8f7c67, #6f5d4e);
}

.t-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px 12px;
}

.t-name {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(13px, 1.55vw, 17px);
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.t-card:hover .t-name {
  color: var(--gold-bright);
}

.t-stats {
  font-size: clamp(10.5px, 1.25vw, 13px);
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-shop {
  font-size: clamp(10.5px, 1.2vw, 12.5px);
  letter-spacing: 0.02em;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-schedule {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: clamp(10.5px, 1.25vw, 13px);
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-schedule-ico {
  flex: 0 0 auto;
  font-size: 0.95em;
  filter: saturate(0.9);
}

/* ---------- 空状態 ---------- */

.empty {
  text-align: center;
  padding: 80px 24px;
  border: 1px solid var(--gold-line-faint);
  margin-top: 24px;
  background: var(--bordeaux-card);
}

.empty h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}

.empty p {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   詳細ページ
   ============================================================ */

.detail-layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 56px) 96px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 52px;
  border-bottom: 1px solid var(--gold-line);
}

.detail-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold-line);
  padding: 7px;
  background: var(--bordeaux-card);
  align-self: start;
}

.detail-photo::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 169, 106, 0.2);
  pointer-events: none;
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.detail-photo span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--serif-jp);
  font-size: 96px;
  font-weight: 600;
  color: var(--gold);
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 106, 0.1), transparent 70%),
    var(--bordeaux-700);
}

.detail-main {
  min-width: 0;
}

.detail-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-line-faint);
}

.lead-area {
  font-family: var(--serif-lat);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.detail-title h2 {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: var(--ink);
}

.detail-status {
  font-family: var(--serif-lat);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordeaux-900);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  padding: 5px 14px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 600;
}

.lead {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 24px 0 28px;
}

.summary {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

/* ---------- ファクトリスト ---------- */

.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}

.detail-facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-line-faint);
}

dt {
  font-family: var(--serif-lat);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

dd {
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* ---------- リンク ---------- */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.links a {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.links a:hover {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  color: var(--bordeaux-900);
  border-color: var(--gold);
}

/* ============================================================
   詳細 — 情報グリッド
   ============================================================ */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  margin-top: 52px;
}

.info-grid h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
}

.info-grid .detail-facts {
  grid-template-columns: 1fr;
}

/* ---------- 口コミ ---------- */

.review-list {
  list-style: none;
  margin-top: 8px;
}

.review-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-line-faint);
}

.review-list span {
  font-family: var(--serif-lat);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-right: 14px;
}

.review-list strong {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.review-list p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-dim);
}

/* ============================================================
   レスポンシブ
   ============================================================ */

@media (max-width: 860px) {
  body {
    font-size: 14.5px;
  }

  .topbar {
    padding: 16px 76px 16px 20px;
  }

  .menu-toggle {
    top: 18px;
    right: 20px;
  }

  .menu-drawer {
    width: min(360px, 90vw);
  }

  .brand-logo {
    height: 44px;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 28px 20px 72px;
  }

  .sidebar {
    position: static;
    top: auto;
  }

  .side-section + .side-section {
    margin-top: 28px;
    padding-top: 26px;
  }

  .section-head {
    align-items: flex-start;
  }

  .status-tabs {
    flex-wrap: wrap;
  }

  .therapist-row {
    grid-template-columns: 240px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .row-head strong {
    font-size: 22px;
  }

  .row-summary {
    -webkit-line-clamp: 2;
  }

  .detail-layout {
    padding: 28px 20px 72px;
  }

  .search-result-layout {
    padding: 28px 20px 72px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .detail-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .detail-title {
    flex-direction: column;
    gap: 14px;
  }

  .detail-status {
    align-self: flex-start;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .therapist-grid {
    gap: 8px;
  }

  .t-card-info {
    padding: 7px 8px 10px;
    gap: 2px;
  }

  .t-status {
    top: 6px;
    left: 6px;
    padding: 3px 7px;
  }

  .therapist-row {
    grid-template-columns: 200px 1fr;
  }

  .row-photo {
    margin-left: -8px;
  }

  .row-photo .row-photo-initial {
    font-size: 40px;
  }

  .row-status {
    top: 9px;
    left: 9px;
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12.5px;
  }

  .row-head {
    gap: 8px;
  }

  .row-details {
    flex-direction: column;
    gap: 2px;
  }

  .row-detail {
    line-height: 1.65;
  }
}
