/* Salon LP — luxury minimal */
:root {
  --lp-white: #ffffff;
  --lp-off: #faf9f7;
  --lp-beige: #e8e4dc;
  --lp-black: #1a1a1a;
  --lp-muted: #6b6b6b;
  --lp-font: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --lp-tab-h: 56px;
  --lp-content: 720px;
}

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

html.lp-root {
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 300;
  color: var(--lp-black);
  background: var(--lp-off);
}

body.lp-body {
  margin: 0;
  padding: var(--lp-tab-h) 0 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--lp-off);
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

/* All themes → same luxury palette */
html[data-theme] {
  --lp-bg: var(--lp-off);
  --lp-surface: var(--lp-white);
  --lp-text: var(--lp-black);
  --lp-muted: #6b6b6b;
  --lp-border: var(--lp-beige);
  --lp-hero-overlay: linear-gradient(180deg, rgba(250,249,247,0) 0%, rgba(26,26,26,0.35) 100%);
  --lp-tab-bg: var(--lp-white);
}

.lp-hidden { display: none !important; }

.lp-loading,
.lp-unpublished {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
  background: var(--lp-off);
  color: var(--lp-muted);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* —— Tab bar —— */
.lp-tab-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--lp-white);
  border-bottom: 1px solid var(--lp-beige);
  padding-top: env(safe-area-inset-top, 0);
}

.lp-tab-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.lp-tab-bar::-webkit-scrollbar { display: none; }

.lp-tab-btn {
  flex: 0 0 auto;
  padding: 18px 14px;
  border: none;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--lp-muted);
  font-family: var(--lp-font);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lp-tab-btn.is-active {
  color: var(--lp-black);
  border-bottom-color: var(--lp-black);
  font-weight: 400;
}

.lp-tab-btn:focus-visible {
  outline: 1px solid var(--lp-black);
  outline-offset: 2px;
}

/* —— Panels —— */
.lp-tab-panels {
  max-width: var(--lp-content);
  margin: 0 auto;
}

.lp-tab-panel {
  display: none;
  background: var(--lp-white);
}

.lp-tab-panel.is-active {
  display: block;
  animation: lpFade 0.4s ease;
}

@keyframes lpFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lp-panel-body {
  padding: 56px 28px 80px;
  background: var(--lp-white);
}

.lp-panel-title {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: var(--lp-black);
}

.lp-panel-lead {
  margin: 0 auto 48px;
  max-width: 28em;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--lp-muted);
  text-align: center;
  line-height: 2;
  letter-spacing: 0.06em;
}

.lp-section-rule {
  width: 48px;
  height: 1px;
  background: var(--lp-beige);
  border: none;
  margin: 0 auto 40px;
}

/* —— Hero (full bleed) —— */
#panel-home {
  background: var(--lp-off);
}

#panel-home .lp-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 72vh;
  min-height: 72dvh;
  max-height: none;
  overflow: hidden;
  background: var(--lp-beige);
}

.lp-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.lp-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.lp-hero-slide--intro {
  background: var(--lp-beige);
}

.lp-hero-slide--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  transition: background 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
}

.lp-hero:not(.lp-hero--photo-mode) .lp-hero-overlay {
  background: linear-gradient(180deg, rgba(250,249,247,0.3) 0%, rgba(250,249,247,0.85) 100%);
}

.lp-hero--photo-mode .lp-hero-overlay {
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.18) 100%);
}

.lp-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  z-index: 3;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.lp-hero--photo-mode .lp-hero-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lp-hero-dots {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lp-hero-dot {
  width: 32px;
  height: 1px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, height 0.2s ease;
}

.lp-hero-dot.is-active {
  background: #fff;
  height: 2px;
}

.lp-salon-name {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 200;
  letter-spacing: 0.35em;
  color: var(--lp-black);
  line-height: 1.4;
  text-indent: 0.35em;
  transition: color 0.4s ease;
}

.lp-catch {
  margin: 0;
  max-width: 22em;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--lp-muted);
  letter-spacing: 0.12em;
  line-height: 2;
  transition: color 0.4s ease;
}

.lp-hero--photo-mode .lp-hero-dot {
  background: rgba(255, 255, 255, 0.5);
}

.lp-hero--photo-mode .lp-hero-dot.is-active {
  background: #fff;
}

#panel-home .lp-panel-body {
  background: var(--lp-white);
  padding: 64px 28px 88px;
}

/* —— Logo —— */
.lp-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.lp-logo {
  display: block;
  max-width: min(320px, 85vw);
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* —— Appeal —— */
.lp-appeal-text {
  white-space: pre-wrap;
  margin: 0 auto 48px;
  max-width: 32em;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2.2;
  text-align: center;
  color: var(--lp-muted);
}

.lp-appeal-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.lp-appeal-images img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* —— Info —— */
.lp-info-card {
  max-width: 28em;
  margin: 0 auto 56px;
  padding: 0;
  border: none;
  background: transparent;
}

.lp-info-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lp-beige);
}

.lp-info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.lp-info-heading {
  margin: 0 0 20px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-align: center;
  color: var(--lp-black);
}

.lp-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 300;
  border-bottom: 1px solid var(--lp-beige);
}

.lp-hours-row:last-child { border-bottom: none; }

.lp-hours-row.is-closed span:last-child { color: var(--lp-muted); }

.lp-info-address,
.lp-info-phone {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
  text-align: center;
  line-height: 2;
}

.lp-info-address a,
.lp-info-phone a {
  color: var(--lp-black);
  text-decoration: none;
  border-bottom: 1px solid var(--lp-beige);
}

/* —— Business calendar —— */
.lp-calendar-wrap {
  margin: 0 auto 56px;
}

.lp-calendar-months {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
  padding: 0;
}

.lp-calendar-month {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--lp-beige);
  background: var(--lp-white);
}

.lp-calendar-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--lp-beige);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.lp-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.lp-calendar-week span {
  padding: 8px 2px;
  text-align: center;
  font-size: 0.62rem;
  color: var(--lp-muted);
  border-bottom: 1px solid var(--lp-beige);
}

.lp-calendar-day {
  min-height: 62px;
  border-right: 1px solid var(--lp-beige);
  border-bottom: 1px solid var(--lp-beige);
  padding: 7px 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: flex-start;
}

.lp-calendar-days .lp-calendar-day:nth-child(7n) {
  border-right: none;
}

.lp-calendar-day--blank {
  background: var(--lp-off);
}

.lp-calendar-day--closed {
  background: #f2f2f2;
}

.lp-calendar-day--special {
  background: #f6f2ea;
}

.lp-calendar-date {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
}

.lp-calendar-hours {
  font-size: 0.56rem;
  letter-spacing: 0;
  color: var(--lp-muted);
  text-align: center;
  line-height: 1.25;
}

.lp-calendar-hours.is-custom {
  color: var(--lp-black);
  font-weight: 400;
}

.lp-footer {
  border-top: 1px solid var(--lp-beige);
  padding: 20px 16px max(28px, env(safe-area-inset-bottom));
  text-align: center;
  background: var(--lp-white);
}

.lp-footer-line {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.6;
  color: #9a9a9a;
  letter-spacing: 0.04em;
}

.lp-footer-salon {
  display: inline;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #9a9a9a;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-tap-highlight-color: transparent;
}

.lp-footer-salon:hover,
.lp-footer-salon:focus-visible {
  color: #777;
  outline: none;
}

.lp-footer-sep {
  color: #9a9a9a;
}

.lp-powered {
  color: #9a9a9a;
  font-size: inherit;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.lp-powered:hover {
  color: #777;
}

/* —— Buttons —— */
.lp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 18px 40px;
  font-family: var(--lp-font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-black);
  border: 1px solid var(--lp-black);
}

.lp-btn--ghost:hover {
  background: var(--lp-black);
  color: var(--lp-white);
}

.lp-btn--solid {
  background: var(--lp-black);
  color: var(--lp-white);
  border: 1px solid var(--lp-black);
  margin-bottom: 56px;
}

.lp-btn--solid:hover {
  background: transparent;
  color: var(--lp-black);
}

.lp-btn-block { width: 100%; max-width: 320px; }

/* —— Blog —— */
.lp-blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 36em;
  margin: 0 auto;
}

.lp-blog-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-beige);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.04);
}

.lp-blog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--lp-beige);
}

.lp-blog-card-body {
  padding: 20px 18px 24px;
}

.lp-blog-card-title {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--lp-black);
  line-height: 1.5;
}

.lp-blog-card-text {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: var(--lp-muted);
  white-space: pre-wrap;
  letter-spacing: 0.03em;
}

html[data-theme="girly"] .lp-blog-card {
  border-radius: 20px;
  border-color: rgba(255, 183, 197, 0.45);
  box-shadow: 0 10px 32px rgba(255, 183, 197, 0.15);
}

html[data-theme="girly"] .lp-blog-card-title {
  font-family: var(--lp-font);
  font-weight: 700;
  background: linear-gradient(transparent 62%, var(--lp-mint) 62%, var(--lp-mint) 88%, transparent 88%);
}

/* —— Information (TOP) —— */
.lp-info-section {
  padding: 0 0 8px;
}

.lp-info-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 36em;
  margin: 0 auto 40px;
}

.lp-info-teaser {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--lp-white);
  border: 1px solid var(--lp-beige);
  border-radius: 2px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-info-teaser:hover {
  border-color: var(--lp-black);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.06);
}

.lp-info-teaser-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.lp-info-teaser-badge {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border: 1px solid var(--lp-black);
  color: var(--lp-black);
  flex-shrink: 0;
}

.lp-info-teaser-date {
  font-size: 0.68rem;
  color: var(--lp-muted);
  letter-spacing: 0.08em;
}

.lp-info-teaser-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--lp-black);
}

.lp-info-teaser-excerpt {
  margin: 8px 0 0;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--lp-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-info-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.lp-info-modal.lp-hidden {
  display: none !important;
}

.lp-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.lp-info-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--lp-content);
  max-height: 88vh;
  max-height: 88dvh;
  overflow-y: auto;
  background: var(--lp-white);
  padding: 28px 22px 36px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}

.lp-info-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--lp-muted);
  cursor: pointer;
}

.lp-info-modal-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border-radius: 2px;
}

.lp-info-modal-date {
  margin: 0 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--lp-muted);
}

.lp-info-modal-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
  color: var(--lp-black);
  padding-right: 28px;
}

.lp-info-modal-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
  color: var(--lp-muted);
  white-space: pre-wrap;
  letter-spacing: 0.03em;
}

html[data-theme="girly"] .lp-info-teaser {
  border-radius: 16px;
  border-color: rgba(255, 183, 197, 0.45);
}

html[data-theme="girly"] .lp-info-modal-panel {
  border-radius: 24px 24px 0 0;
  font-family: var(--lp-font);
}

.lp-price-global-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--lp-muted);
  line-height: 1.85;
  white-space: pre-wrap;
  margin: 0 auto 28px;
  max-width: 36em;
  text-align: center;
  letter-spacing: 0.04em;
}

.lp-cat-photo {
  width: 100%;
  max-width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  margin: 0 0 14px;
  border-radius: 2px;
}

.lp-cat-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--lp-muted);
  line-height: 1.75;
  white-space: pre-wrap;
  margin: 0 0 18px;
  letter-spacing: 0.03em;
}

/* —— Menu accordion —— */
.lp-prices-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36em;
  margin: 0 auto;
}

.lp-accordion-item {
  border: none;
  border-bottom: 1px solid var(--lp-beige);
  background: transparent;
  border-radius: 0;
}

.lp-accordion-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  list-style: none;
}

.lp-accordion-summary::-webkit-details-marker { display: none; }

.lp-accordion-summary::after {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--lp-black);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lp-accordion-item[open] .lp-accordion-summary::after {
  transform: rotate(90deg);
}

.lp-accordion-count {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--lp-muted);
  letter-spacing: 0.06em;
  margin-left: auto;
  margin-right: 12px;
}

.lp-accordion-body {
  padding: 0 0 24px;
  border: none;
}

.lp-price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  font-size: 0.8rem;
  font-weight: 300;
  border-bottom: 1px solid var(--lp-beige);
}

.lp-price-row:last-child { border-bottom: none; }

.lp-price-row span:last-child {
  font-weight: 400;
  color: var(--lp-black);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.lp-price-note {
  display: block;
  font-size: 0.68rem;
  color: var(--lp-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* —— Gallery —— */
#panel-photo .lp-panel-body {
  padding-top: 56px;
}

.lp-tag-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lp-tag-btn {
  padding: 10px 18px;
  border: 1px solid var(--lp-beige);
  border-radius: 0;
  background: transparent;
  color: var(--lp-muted);
  font-family: var(--lp-font);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  cursor: pointer;
  touch-action: manipulation;
}

.lp-tag-btn.is-active {
  background: transparent;
  color: var(--lp-black);
  border-color: var(--lp-black);
}

.lp-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.lp-gallery-item {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--lp-beige);
  overflow: hidden;
  text-decoration: none;
  touch-action: manipulation;
}

.lp-gallery-item::before {
  content: '';
  display: block;
  padding-bottom: 125%;
}

.lp-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.lp-gallery-item--error { display: none; }

/* —— Staff —— */
.lp-staff-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36em;
  margin: 0 auto;
}

.lp-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0;
  border: none;
  border-bottom: 1px solid var(--lp-beige);
  border-radius: 0;
  background: transparent;
  gap: 24px;
}

.lp-staff-card:last-child { border-bottom: none; }

.lp-staff-photo {
  width: 160px;
  height: 200px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--lp-beige);
}

.lp-staff-photo.placeholder {
  display: block;
  background: var(--lp-beige);
}

.lp-staff-name {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.lp-staff-role {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--lp-muted);
  letter-spacing: 0.1em;
}

.lp-staff-comment {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: var(--lp-muted);
  max-width: 26em;
}

.lp-staff-specialty {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--lp-muted);
  letter-spacing: 0.06em;
}

/* —— Reserve —— */
.lp-reserve-body {
  text-align: center;
  max-width: 32em;
  margin: 0 auto;
}

.lp-policy-card {
  text-align: left;
  padding: 40px 0 0;
  border: none;
  border-top: 1px solid var(--lp-beige);
  background: transparent;
}

.lp-policy-card h3 {
  margin: 0 0 16px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

.lp-policy-card h3:not(:first-child) { margin-top: 40px; }

.lp-policy-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: var(--lp-muted);
}

.lp-policy-card li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lp-beige);
}

.lp-policy-card li:last-child { border-bottom: none; }

.lp-policy-card p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: var(--lp-muted);
}

.lp-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--lp-muted);
  padding: 64px 24px;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
}

@media (min-width: 600px) {
  .lp-panel-body { padding: 64px 48px 96px; }
  #panel-home .lp-panel-body { padding: 80px 48px 104px; }
  .lp-tab-btn { padding: 20px 18px; font-size: 0.75rem; }
  .lp-appeal-images { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .lp-gallery-item::before { padding-bottom: 130%; }
}

@media (min-width: 900px) {
  :root { --lp-content: 880px; }
  .lp-gallery { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  #panel-home .lp-hero { min-height: 78vh; }
}

/* —— Theme: ガーリー —— */
html[data-theme="girly"] {
  --lp-pink: #ffb7c5;
  --lp-sky: #b7e0ff;
  --lp-mint: #b7f0d8;
  --lp-purple: #d4b7ff;
  --lp-font: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Yu Gothic UI', sans-serif;
  --lp-white: #ffffff;
  --lp-off: #fff8fb;
  --lp-beige: #ffe8f0;
  --lp-black: #5c4a62;
  --lp-muted: #9a7f8f;
  --lp-bg: linear-gradient(165deg, #fff0f5 0%, #ffffff 42%, #f5fbff 100%);
  --lp-surface: rgba(255, 255, 255, 0.92);
  --lp-text: #5c4a62;
  --lp-border: rgba(255, 183, 197, 0.45);
  --lp-hero-overlay: linear-gradient(180deg, rgba(255, 240, 248, 0.15) 0%, rgba(212, 183, 255, 0.25) 100%);
  --lp-tab-bg: rgba(255, 255, 255, 0.95);
}

html[data-theme="girly"] body.lp-body {
  background: var(--lp-bg);
  background-attachment: fixed;
  color: var(--lp-text);
  font-family: var(--lp-font);
  font-weight: 400;
  letter-spacing: 0.02em;
}

html[data-theme="girly"] .lp-loading,
html[data-theme="girly"] .lp-unpublished {
  background: var(--lp-bg);
  color: var(--lp-muted);
  font-family: var(--lp-font);
}

html[data-theme="girly"] .lp-tab-header {
  background: var(--lp-tab-bg);
  border-bottom: 2px solid var(--lp-pink);
  box-shadow: 0 4px 24px rgba(255, 183, 197, 0.2);
}

html[data-theme="girly"] .lp-tab-btn {
  font-family: var(--lp-font);
  font-weight: 500;
  color: var(--lp-muted);
  border-bottom-width: 3px;
  border-radius: 12px 12px 0 0;
}

html[data-theme="girly"] .lp-tab-btn.is-active {
  color: var(--lp-black);
  border-bottom-color: var(--lp-purple);
  background: linear-gradient(180deg, rgba(255, 183, 197, 0.2), transparent);
}

html[data-theme="girly"] .lp-tab-panel,
html[data-theme="girly"] #panel-home {
  background: transparent;
}

html[data-theme="girly"] .lp-panel-body,
html[data-theme="girly"] #panel-home .lp-panel-body {
  background: var(--lp-surface);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -8px 40px rgba(255, 183, 197, 0.12);
}

html[data-theme="girly"] .lp-panel-title,
html[data-theme="girly"] .lp-info-heading,
html[data-theme="girly"] .lp-salon-name {
  font-family: var(--lp-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-black);
  position: relative;
  display: inline-block;
  padding: 0 0.35em 0.45em;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(transparent 62%, var(--lp-mint) 62%, var(--lp-mint) 88%, transparent 88%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

html[data-theme="girly"] .lp-panel-title::after,
html[data-theme="girly"] .lp-info-heading::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-pink), var(--lp-sky), var(--lp-purple));
  opacity: 0.65;
}

html[data-theme="girly"] .lp-salon-name {
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  text-indent: 0;
  padding: 0.2em 0.5em 0.55em;
  border: 2px dashed rgba(255, 183, 197, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

html[data-theme="girly"] .lp-catch,
html[data-theme="girly"] .lp-panel-lead,
html[data-theme="girly"] .lp-appeal-text,
html[data-theme="girly"] .lp-staff-comment {
  font-family: var(--lp-font);
  color: var(--lp-muted);
}

html[data-theme="girly"] .lp-section-rule {
  background: linear-gradient(90deg, var(--lp-pink), var(--lp-sky), var(--lp-mint));
  height: 3px;
  border-radius: 999px;
  width: 64px;
}

html[data-theme="girly"] #panel-home .lp-hero {
  background: linear-gradient(135deg, var(--lp-pink), var(--lp-sky));
}

html[data-theme="girly"] .lp-hero-slide--intro {
  background: linear-gradient(145deg, var(--lp-pink) 0%, var(--lp-sky) 50%, var(--lp-mint) 100%);
}

html[data-theme="girly"] .lp-hero:not(.lp-hero--photo-mode) .lp-hero-overlay {
  background: linear-gradient(180deg, rgba(255, 240, 248, 0.35) 0%, rgba(255, 255, 255, 0.75) 100%);
}

html[data-theme="girly"] .lp-hero-dot {
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

html[data-theme="girly"] .lp-hero-dot.is-active {
  width: 24px;
  background: var(--lp-purple);
}

html[data-theme="girly"] .lp-btn {
  max-width: 360px;
  padding: 20px 44px;
  border-radius: 999px;
  font-family: var(--lp-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(255, 183, 197, 0.35);
}

html[data-theme="girly"] .lp-btn--ghost {
  background: linear-gradient(135deg, var(--lp-sky), var(--lp-mint));
  color: #4a5f6e;
  border: 2px solid #fff;
}

html[data-theme="girly"] .lp-btn--ghost:hover {
  background: linear-gradient(135deg, var(--lp-pink), var(--lp-purple));
  color: #fff;
  border-color: #fff;
}

html[data-theme="girly"] .lp-btn--solid {
  background: linear-gradient(135deg, var(--lp-pink), var(--lp-purple));
  color: #fff;
  border: none;
}

html[data-theme="girly"] .lp-btn--solid:hover {
  background: linear-gradient(135deg, var(--lp-purple), var(--lp-pink));
  color: #fff;
  opacity: 0.95;
}

html[data-theme="girly"] .lp-info-block,
html[data-theme="girly"] .lp-policy-card,
html[data-theme="girly"] .lp-policy-card li {
  border-color: var(--lp-border);
}

html[data-theme="girly"] .lp-staff-card {
  border-bottom-color: var(--lp-border);
}

html[data-theme="girly"] .lp-staff-photo,
html[data-theme="girly"] .lp-staff-photo.placeholder {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lp-mint), var(--lp-sky));
}

html[data-theme="girly"] .lp-tag-btn {
  font-family: var(--lp-font);
  border-radius: 999px;
  border: 2px solid var(--lp-pink);
  background: #fff;
  color: var(--lp-muted);
}

html[data-theme="girly"] .lp-tag-btn.is-active {
  background: linear-gradient(135deg, var(--lp-pink), var(--lp-purple));
  color: #fff;
  border-color: transparent;
}

html[data-theme="girly"] .lp-menu-cat summary,
html[data-theme="girly"] .lp-menu-item-name {
  font-family: var(--lp-font);
  font-weight: 500;
}

html[data-theme="girly"] .lp-calendar-day.is-closed {
  background: rgba(255, 183, 197, 0.15);
}

html[data-theme="girly"] .lp-calendar-day.is-today {
  outline: 2px solid var(--lp-purple);
  outline-offset: 2px;
  border-radius: 8px;
}

html[data-theme="girly"] .lp-powered {
  font-family: var(--lp-font);
  color: var(--lp-muted);
}
