:root {
  --bg: #f7f1e8;
  --bg-strong: #efe2d1;
  --paper: rgba(255, 252, 247, 0.76);
  --paper-strong: rgba(255, 250, 244, 0.94);
  --text: #2d261f;
  --muted: #685c51;
  --line: rgba(87, 67, 47, 0.12);
  --accent: #bd6f4d;
  --accent-deep: #8f5037;
  --accent-soft: #e8b89e;
  --sage: #8ea08a;
  --shadow: 0 20px 60px rgba(77, 52, 31, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 184, 158, 0.28), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(142, 160, 138, 0.24), transparent 24%),
    linear-gradient(180deg, #f9f5ef 0%, #f7f1e8 42%, #f4ebe0 100%);
  line-height: 1.8;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(189, 111, 77, 0.18);
}

.page-glow-right {
  right: -10rem;
  top: 24rem;
  background: rgba(142, 160, 138, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 245, 239, 0.72);
  border-bottom: 1px solid rgba(87, 67, 47, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-size: 0.95rem;
  color: rgba(45, 38, 31, 0.82);
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(45, 38, 31, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: 96px 0;
}

.hero {
  padding-top: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.quote-card,
.tip-card,
.wellness-card {
  position: relative;
}

.hero-copy {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 251, 247, 0.94), rgba(255, 247, 239, 0.82)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 200px;
  height: 200px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(189, 111, 77, 0.14), rgba(142, 160, 138, 0.1));
  transform: rotate(24deg);
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.access-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  margin-bottom: 18px;
}

.hero h1 span {
  display: block;
  color: var(--accent-deep);
}

.hero-lead,
.section-heading p,
.split-copy p,
.access-copy p {
  max-width: 58ch;
  color: rgba(45, 38, 31, 0.8);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(87, 67, 47, 0.16);
}

.full-width {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(87, 67, 47, 0.08);
  font-size: 0.92rem;
}

.point-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--accent-deep);
}

.hero-panel {
  display: grid;
  gap: 20px;
  justify-items: end;
}

.hero-photo-card {
  margin: 0;
  width: min(100%, 280px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(77, 52, 31, 0.09);
}

.hero-photo-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.88) brightness(1.03);
}

.card,
.quote-card,
.tip-card,
.wellness-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(189, 111, 77, 0.14), rgba(255, 255, 255, 0.8));
  color: var(--accent-deep);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon img {
  width: 28px;
  height: 28px;
}

.soft-card {
  background:
    linear-gradient(180deg, rgba(142, 160, 138, 0.18), rgba(255, 252, 247, 0.98)),
    var(--paper-strong);
}

.card-kicker {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-card-text {
  margin: 0;
  font-size: 1.02rem;
}

.schedule-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.schedule-list div,
.hours-table div {
  display: grid;
  gap: 4px;
}

.schedule-list dt,
.hours-table span {
  font-size: 0.92rem;
  color: var(--muted);
}

.schedule-list dd,
.hours-table strong {
  margin: 0;
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.access-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

.feature-grid,
.treatment-grid,
.tips-grid,
.wellness-grid {
  display: grid;
  gap: 20px;
}

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

.feature-grid h3,
.treatment-grid h3,
.tip-card h3,
.wellness-card h3,
.access-cards h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.accent-section {
  position: relative;
}

.accent-section::before {
  content: "";
  position: absolute;
  inset: 48px 0;
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.78), rgba(236, 225, 211, 0.58));
  z-index: -1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 24px;
  align-items: center;
}

.quote-card {
  padding: 36px;
  background: linear-gradient(160deg, rgba(189, 111, 77, 0.94), rgba(143, 80, 55, 0.96));
  color: #fff;
  overflow: hidden;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: auto -48px -48px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.quote-mark {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.8;
}

.quote-body {
  margin: 10px 0 18px;
  font-size: 1.08rem;
}

.quote-author {
  margin: 0;
  opacity: 0.86;
}

.treatment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.treatment-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.treatment-photo-card {
  margin: 0;
  width: min(100%, 260px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(77, 52, 31, 0.09);
}

.treatment-photo-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(1.03);
}

.treatment-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 18px rgba(143, 80, 55, 0.22);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.5rem + 4px);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
}

.tag-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(189, 111, 77, 0.12);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

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

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

.tip-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

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

.wellness-card {
  padding: 28px;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(236, 225, 211, 0.74)),
    var(--paper-strong);
}

.wellness-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-deep);
  box-shadow: inset 0 0 0 1px rgba(87, 67, 47, 0.08);
}

.wellness-icon img {
  width: 30px;
  height: 30px;
}

.wellness-index {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.access-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.map-card {
  padding: 32px;
}

.hours-table {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hours-head .card-kicker {
  margin: 0;
}

.hours-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-deep);
}

.site-footer {
  padding: 28px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(87, 67, 47, 0.12);
  color: var(--muted);
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .menu-toggle span {
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 251, 247, 0.96);
    border: 1px solid rgba(87, 67, 47, 0.12);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split-layout,
  .access-layout,
  .feature-grid,
  .treatment-showcase,
  .treatment-grid,
  .tips-grid,
  .wellness-grid,
  .access-cards {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 32px;
  }

  .hero-panel {
    justify-items: stretch;
  }

  .hero-photo-card,
  .treatment-photo-card {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100vw - 24px, 1120px);
  }

  .section {
    padding: 44px 0;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-grid,
  .split-layout,
  .feature-grid,
  .treatment-showcase,
  .treatment-grid,
  .tips-grid,
  .wellness-grid,
  .access-layout,
  .access-cards {
    gap: 14px;
  }

  .hero-copy,
  .card,
  .quote-card,
  .wellness-card,
  .tip-card,
  .map-card {
    padding: 18px;
  }

  .hero-copy {
    padding: 22px 18px 18px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    margin-bottom: 12px;
  }

  .section-heading,
  .access-cards {
    margin-bottom: 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2,
  .split-copy h2,
  .access-copy h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 10px;
  }

  .hero-lead,
  .section-heading p,
  .split-copy p,
  .access-copy p,
  .hero-card-text,
  .quote-body,
  .card p,
  .tip-card p,
  .wellness-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero-points {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-points li {
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .point-icon {
    width: 18px;
    height: 18px;
  }

  .hero-panel {
    gap: 12px;
  }

  .hero-photo-card img,
  .treatment-photo-card img {
    height: 120px;
  }

  .card-icon,
  .wellness-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .card-icon img,
  .wellness-icon img {
    width: 24px;
    height: 24px;
  }

  .tag-list {
    gap: 8px;
    margin-bottom: 12px;
  }

  .tag-list li {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .check-list {
    gap: 10px;
    margin-top: 14px;
  }

  .check-list li {
    padding-left: 28px;
  }

  .quote-card::after,
  .page-glow {
    display: none;
  }

  .wellness-card {
    min-height: auto;
  }

  .wellness-index {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  .access-cards {
    margin-top: 14px;
  }

  .hours-table {
    gap: 12px;
    margin-bottom: 18px;
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 14px;
  }

  .site-footer {
    padding: 18px 0 26px;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 36px 0;
  }

  .hero-copy,
  .card,
  .quote-card,
  .wellness-card,
  .tip-card,
  .map-card {
    padding: 16px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-photo-card img,
  .treatment-photo-card img {
    height: 104px;
  }
}

/* ===== BODY MAP ===== */
.body-map-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.body-map-figure {
  margin: 0;
}

.body-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot-group {
  cursor: pointer;
  outline: none;
}

.hotspot-dot {
  opacity: 0.72;
  transition: opacity 0.2s, r 0.2s;
}

.hotspot-label {
  transition: opacity 0.2s;
}

.hotspot-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: body-pulse 2.6s ease-out infinite;
}

.hotspot-group:nth-child(1) .hotspot-pulse { animation-delay: 0s; }
.hotspot-group:nth-child(2) .hotspot-pulse { animation-delay: 0.4s; }
.hotspot-group:nth-child(3) .hotspot-pulse { animation-delay: 0.8s; }
.hotspot-group:nth-child(4) .hotspot-pulse { animation-delay: 1.2s; }
.hotspot-group:nth-child(5) .hotspot-pulse { animation-delay: 1.6s; }
.hotspot-group:nth-child(6) .hotspot-pulse { animation-delay: 2.0s; }

@keyframes body-pulse {
  0%   { transform: scale(0.85); opacity: 0.45; }
  65%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

.hotspot-group:hover .hotspot-dot,
.hotspot-group.is-active .hotspot-dot,
.hotspot-group:focus-visible .hotspot-dot {
  opacity: 1;
  fill: #8f5037;
}

.hotspot-group.is-active .hotspot-pulse {
  animation: none;
  opacity: 0.35;
}

/* Panel */
.body-map-panel {
  position: sticky;
  top: 80px;
}

.body-panel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px 24px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.body-panel-content {
  background: var(--paper-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  animation: fadeSlideIn 0.28s ease;
}

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

.body-panel-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.body-panel-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.3;
}

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

.symptom-tag {
  background: rgba(189, 111, 77, 0.13);
  color: var(--accent-deep);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
}

.body-panel-desc {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.body-panel-anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.anatomy-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.anatomy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.anatomy-list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 10px;
  position: relative;
  line-height: 1.5;
}

.anatomy-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

.anatomy-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.anatomy-btn:hover,
.anatomy-btn.is-active {
  color: var(--accent-deep);
  text-decoration-color: var(--accent-soft);
}

.anatomy-detail {
  margin-top: 16px;
  background: rgba(189, 111, 77, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 16px;
  animation: fadeSlideIn 0.2s ease;
}

.ad-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-deep);
  margin: 0 0 8px;
}

.ad-read {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 2px;
}

.ad-row {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 5px;
  line-height: 1.6;
}

.ad-row:last-child {
  margin-bottom: 0;
}

.ad-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(189, 111, 77, 0.12);
  border-radius: 4px;
  padding: 1px 6px;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 680px) {
  .body-map-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .body-map-figure {
    max-width: 180px;
    margin: 0 auto;
  }
  .body-map-panel {
    position: static;
  }
}
