:root {
  --ink: #2d2b2b;
  --sub: #746f6c;
  --line: #d9d5d1;
  --paper: #fbfaf8;
  --mist: #ebe8e4;
  --sage: #3b3939;
  --coral: #c96787;
  --rose: #f6e7ec;
  --gold: #746b64;
  --customer-accent: #ad5573;
  --customer-accent-hover: #97445f;
  --customer-accent-soft: #fff6f9;
  --shadow: 0 18px 44px rgba(45, 43, 43, 0.1);
}

@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="file"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
  select,
  textarea,
  [contenteditable="true"] {
    font-size: 16px !important;
  }
}

* {
  box-sizing: border-box;
}

.tenant-public-status {
  display: none;
  width: min(520px, calc(100% - 40px));
  margin: clamp(80px, 16vh, 180px) auto;
  padding: 40px 32px;
  border: 1px solid rgba(90, 61, 70, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(66, 40, 49, 0.1);
  text-align: center;
}

.tenant-public-status img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
}

.tenant-public-status h1 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.tenant-public-status p:last-child {
  margin: 0;
  color: #6d6266;
}

html.myuco-contract-tenant.myuco-tenant-loading .tenant-public-status,
html.myuco-contract-tenant.myuco-tenant-unavailable .tenant-public-status,
html.myuco-invalid-tenant .tenant-public-status {
  display: block;
}

html.myuco-contract-tenant.myuco-tenant-loading body > :not(.tenant-public-status),
html.myuco-contract-tenant.myuco-tenant-unavailable body > :not(.tenant-public-status),
html.myuco-invalid-tenant body > :not(.tenant-public-status) {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.7;
}

body.owner-entry-mode > .site-header,
body.owner-entry-mode main > section:not(#admin),
body.owner-entry-mode main > .public-site-footer {
  display: none;
}

body.owner-entry-mode #admin {
  min-height: 100vh;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid rgba(217, 213, 209, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
  order: 1;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  display: block;
}

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

.brand small {
  color: var(--sub);
  font-size: 11px;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  order: 2;
  color: var(--sub);
  font-size: 14px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(201, 95, 128, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  white-space: nowrap;
}

.top-nav a.nav-muted {
  border-color: rgba(217, 213, 209, 0.9);
  background: rgba(255, 255, 255, 0.34);
  color: var(--sub);
}

.top-nav a[aria-current="page"] {
  border-color: rgba(201, 95, 128, 0.6);
  background: rgba(252, 238, 244, 0.8);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(201, 95, 128, 0.52);
  background: rgba(246, 231, 236, 0.92);
  color: var(--coral);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.line-link,
.primary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

.line-link,
.primary-action {
  background: var(--ink);
  color: #fff;
}

.line-link {
  order: 3;
}

.ghost-action {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.ghost-action.is-danger {
  border-color: rgba(125, 59, 71, 0.45);
  color: #7d3b47;
}

.inquiry-section {
  border-top: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .primary-action {
  justify-self: start;
}

.inquiry-form .primary-action,
.line-consult-card .primary-action {
  border-color: rgba(201, 103, 135, 0.34);
  border-radius: 999px;
  background: var(--rose);
  color: #765563;
  font-weight: 500;
}

.inquiry-form .primary-action:hover,
.line-consult-card .primary-action:hover {
  border-color: rgba(201, 103, 135, 0.5);
  background: #efd8e0;
}

.inquiry-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--rose);
  font-weight: 700;
}

.inquiry-page {
  max-width: 980px;
}

.inquiry-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.line-page {
  max-width: 980px;
}

.line-consult-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.line-consult-card h2 {
  margin: 0 0 10px;
  color: #514c4a;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
}

.line-consult-card p {
  color: var(--sub);
}

.line-consult-note {
  margin-top: 14px;
  font-size: 13px;
}

.line-qr-frame {
  display: grid;
  min-height: 240px;
  place-items: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.line-qr-frame img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
}

.line-qr-frame figcaption {
  color: var(--sub);
  font-size: 13px;
}

.mobile-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.review-highlight {
  padding: 22px clamp(20px, 6vw, 72px) 0;
  background: #fff;
}

.review-highlight-card {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1120px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(201, 103, 135, 0.15);
  border-radius: 8px;
  background: #fdf9fa;
  color: #625d5b;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.review-highlight-card:hover {
  border-color: rgba(201, 103, 135, 0.34);
  background: var(--rose);
}

.review-highlight-card:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.review-highlight-rating {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
  white-space: nowrap;
}

.review-highlight-stars {
  color: var(--coral);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1;
}

.review-highlight-score {
  color: #514c4a;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.review-highlight-rating small {
  color: var(--sub);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.review-highlight-divider {
  align-self: stretch;
  width: 1px;
  background: rgba(217, 213, 209, 0.85);
}

.review-highlight-copy {
  display: grid;
  gap: 2px;
  line-height: 1.5;
}

.review-highlight-copy > span {
  color: #5d5656;
  font-size: 14px;
  font-weight: 500;
}

.review-highlight-copy small {
  color: var(--sub);
  font-size: 11px;
  font-weight: 400;
}

.review-highlight-arrow {
  color: var(--sub);
  font-size: 24px;
  line-height: 1;
}

.salon-strengths {
  padding: 14px clamp(20px, 6vw, 72px) 0;
  background: #fff;
}

.salon-strengths-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(217, 213, 209, 0.72);
  border-bottom: 1px solid rgba(217, 213, 209, 0.72);
  list-style: none;
}

.salon-strengths-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 12px;
  border-right: 1px solid rgba(217, 213, 209, 0.72);
  color: #625c59;
  font-size: 13px;
  font-weight: 500;
}

.salon-strengths-list li:last-child {
  border-right: 0;
}

.salon-strengths-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #b26f86;
}

.salon-strength-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.salon-strength-copy strong {
  color: #625c59;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.salon-strength-copy small {
  color: var(--sub);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.popular-designs {
  padding: 30px clamp(20px, 6vw, 72px) 36px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.popular-designs-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.popular-designs-heading {
  margin-bottom: 18px;
}

.popular-designs-heading .eyebrow {
  margin-bottom: 4px;
  color: #b26f86;
  font-weight: 600;
}

.popular-designs-heading h2 {
  margin: 0;
  color: #514c4a;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
}

.popular-designs-track {
  display: grid;
  grid-auto-columns: clamp(220px, 25vw, 295px);
  grid-auto-flow: column;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 8px;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(116, 111, 108, 0.3) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.popular-designs-track::-webkit-scrollbar {
  height: 3px;
}

.popular-designs-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(116, 111, 108, 0.3);
}

.popular-design-item {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.popular-design-card {
  position: relative;
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6e6865;
  cursor: pointer;
  text-align: left;
}

.popular-design-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(217, 213, 209, 0.8);
  border-radius: 8px;
  background: var(--mist);
}

.popular-design-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.popular-design-card:hover img {
  transform: scale(1.025);
}

.popular-design-caption {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-design-more {
  display: grid;
  gap: 7px;
  color: #6e6865;
}

.popular-design-more-visual {
  display: grid;
  aspect-ratio: 4 / 3;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(201, 103, 135, 0.22);
  border-radius: 8px;
  background: var(--rose);
  color: #765563;
  text-align: center;
}

.popular-design-more-visual strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.popular-design-more-visual small {
  color: #9b7080;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.popular-design-more:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.popular-design-card:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.popular-designs-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}

.popular-designs-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(116, 111, 108, 0.34);
  color: #6b6562;
  font-size: 14px;
  font-weight: 500;
}

.popular-designs-link span {
  font-size: 17px;
}

.promotion-spotlight {
  padding: 30px clamp(20px, 6vw, 72px);
  border-bottom: 1px solid #ead9df;
  background: #fff7fa;
}

.promotion-spotlight[hidden] {
  display: none;
}

.promotion-spotlight-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.promotion-spotlight-heading {
  margin-bottom: 15px;
}

.promotion-spotlight-heading .eyebrow {
  margin-bottom: 3px;
  color: #b54870;
}

.promotion-spotlight-heading h2 {
  margin: 0;
  color: #514c4a;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
}

.promotion-spotlight-list {
  display: grid;
  gap: 12px;
}

.promotion-spotlight-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e2c6d0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 24px rgba(81, 47, 60, 0.07);
}

.promotion-spotlight-card.is-campaign {
  border-color: rgba(201, 47, 124, 0.42);
}

.promotion-spotlight-card:focus-visible {
  outline: 2px solid #b54870;
  outline-offset: 3px;
}

.promotion-spotlight-image {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  background: var(--mist);
}

.promotion-spotlight-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.promotion-spotlight-card:hover .promotion-spotlight-image img {
  transform: scale(1.02);
}

.promotion-spotlight-copy {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 20px 22px;
}

.promotion-spotlight-kicker {
  color: #b54870;
  font-size: 11px;
  font-weight: 900;
}

.promotion-spotlight-copy strong {
  color: #3f383b;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.35;
}

.promotion-spotlight-description {
  display: block;
  margin: 0;
  color: #6d6467;
  font-size: 14px;
  line-height: 1.7;
}

.promotion-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: #a02d67;
  font-size: 12px;
  font-weight: 800;
}

.promotion-spotlight-more {
  justify-self: start;
  margin-top: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(181, 72, 112, 0.42);
  color: #744c5b;
  font-size: 12px;
  font-weight: 700;
}

.weekly-availability {
  padding-top: 42px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.weekly-availability-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.weekly-availability-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.weekly-availability-heading h2 {
  margin-bottom: 0;
  color: #514c4a;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}

.weekly-availability-heading .eyebrow {
  color: #b26f86;
  font-weight: 600;
}

.weekly-availability-last-booking {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin: 7px 0 0;
  color: var(--sub);
  font-size: 13px;
  font-weight: 400;
}

.weekly-availability-last-booking strong {
  color: var(--coral);
  font-size: 16px;
  font-weight: 600;
}

.weekly-availability-navigation {
  display: grid;
  grid-template-columns: 40px minmax(170px, auto) 40px;
  align-items: center;
  gap: 8px;
}

.weekly-availability-navigation button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(116, 111, 108, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.weekly-availability-navigation button span {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.weekly-availability-navigation button:disabled {
  opacity: 0.28;
  cursor: default;
}

.weekly-availability-period {
  margin: 0;
  color: var(--sub);
  line-height: 1.4;
  text-align: center;
}

.weekly-availability-period strong,
.weekly-availability-period span {
  display: block;
}

.weekly-availability-period strong {
  color: #5d5856;
  font-size: 13px;
  font-weight: 500;
}

.weekly-availability-period span {
  font-size: 12px;
  font-weight: 400;
}

.weekly-availability-list {
  border-top: 1px solid rgba(116, 111, 108, 0.28);
}

.weekly-availability-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 2fr);
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(116, 111, 108, 0.22);
}

.weekly-availability-row.is-today-available {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 3px 0 #d78ca2;
}

.weekly-availability-date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.weekly-availability-date strong {
  color: #575250;
  font-size: 20px;
  font-weight: 500;
}

.weekly-availability-date span {
  color: var(--sub);
  font-size: 13px;
  font-weight: 400;
}

.weekly-availability-date .weekly-availability-today-badge {
  display: inline-flex;
  flex-basis: 100%;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #a05870;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.weekly-availability-today-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d16f8d;
  box-shadow: 0 0 0 3px rgba(209, 111, 141, 0.14);
}

@keyframes weekly-availability-today-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.weekly-availability-times {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.weekly-availability-times > span {
  color: #5d5856;
  font-size: 14px;
  font-weight: 500;
}

.weekly-availability-separator {
  margin: 0 10px;
  color: rgba(116, 111, 108, 0.58);
  font-size: 13px;
  font-style: normal;
}

.weekly-availability-empty {
  color: var(--sub);
  font-size: 14px;
}

.weekly-availability-loading {
  min-height: 68px;
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid rgba(116, 111, 108, 0.22);
  color: var(--sub);
  font-size: 14px;
  font-weight: 700;
}

.weekly-availability-loading.is-error {
  color: #7d3b47;
}

.weekly-availability-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.weekly-availability-footer p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.weekly-availability-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.mobile-directory-card {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(217, 213, 209, 0.9);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  isolation: isolate;
}

.mobile-directory-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat;
  content: "";
}

.mobile-directory-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(37, 33, 31, 0.38), rgba(37, 33, 31, 0.78));
  content: "";
}

.mobile-directory-design::before {
  background-image: url("assets/gallery/gallery-01.jpg");
}

.mobile-directory-info::before {
  background-image: url("assets/gallery/gallery-08.jpg");
}

.mobile-directory-review::before {
  background-image: url("assets/gallery/gallery-15.jpg");
}

.mobile-directory-access::before {
  background-image: linear-gradient(135deg, #e9e6df, #2c2a29);
}

.mobile-directory-card span {
  color: #f4a7bd;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-directory-card strong {
  font-size: 18px;
}

.mobile-directory-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
}

.access-page-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(400px, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.access-page-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(20px, 4vw, 34px);
}

.access-page-copy h2 {
  color: #514c4a;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
}

.access-page-copy p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.access-page .google-map,
.access-page .google-map iframe {
  min-height: 420px;
}

.wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(480px, 58svh, 620px);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: min(18vh, 120px) clamp(20px, 6vw, 72px) 96px;
  border-bottom: 12px solid #302e2f;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 32, 33, 0.88), rgba(48, 46, 47, 0.5) 52%, rgba(25, 23, 24, 0.18)),
    linear-gradient(0deg, rgba(20, 18, 19, 0.34), transparent 48%);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-left: 24px;
  border-left: 3px solid #f2b5ca;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4b8cc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero h1 small {
  margin-top: 8px;
  font-size: 0.58em;
  font-weight: 700;
}

.hero-specialty {
  margin-bottom: 10px;
  color: #f4b8cc;
  font-size: 18px !important;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(16px, 2vw, 20px);
}

#salon-copy {
  white-space: pre-line;
}

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

.hero-actions .primary-action {
  border-color: #fff;
  background: #fff;
  color: #302e2f;
}

.hero-actions .ghost-action {
  border-color: #f2b5ca;
  background: rgba(48, 46, 47, 0.62);
  color: #fff;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.quick-info div {
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  color: var(--gold);
  font-weight: 800;
}

.quick-info strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 18px;
}

.quick-info p {
  margin-bottom: 0;
  color: var(--sub);
}

.section-pad {
  padding: 80px clamp(20px, 6vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.split-section > div:first-child p {
  color: var(--sub);
}

.booking-layout {
  background: #fff;
}

.booking-layout > .section-heading .eyebrow {
  color: #b26f86;
  font-weight: 600;
}

.booking-layout > .section-heading h2 {
  color: #514c4a;
  font-weight: 400;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.booking-main,
.booking-summary,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.step-tab {
  min-height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--sub);
  cursor: pointer;
}

.step-tab:last-child {
  border-right: 0;
}

.step-tab.is-active {
  background: var(--rose);
  color: #765563;
  font-weight: 600;
}

.booking-step {
  display: none;
  padding: 24px;
}

.booking-step.is-active {
  display: block;
}

.step-intro {
  margin-bottom: 18px;
}

.step-intro h3 {
  margin-bottom: 4px;
  color: #5a5553;
  font-weight: 400;
}

.step-intro p {
  margin-bottom: 0;
  color: var(--sub);
}

.step-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px -24px -24px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.95);
  backdrop-filter: blur(14px);
}

.step-footer div {
  display: grid;
  gap: 0;
}

.step-footer span {
  color: var(--sub);
  font-size: 13px;
}

.mobile-step-action {
  display: none;
}

.mobile-step-action[hidden] {
  display: none !important;
}

.primary-action:disabled {
  border-color: var(--line);
  background: #d8d3cd;
  color: #77706b;
  cursor: not-allowed;
}

.reservation-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(42, 40, 39, 0.92), rgba(92, 82, 78, 0.78)),
    var(--paper);
}

.customer-reservation-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 16px;
}

.reservation-back-link {
  position: fixed;
  top: 18px;
  left: 18px;
  color: #fff;
  font-weight: 700;
}

.reservation-self-card {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.reservation-self-card h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 7vw, 42px);
}

.reservation-self-message {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.reservation-self-message.is-ok {
  border-color: rgba(98, 148, 124, 0.34);
  background: #eef6f1;
}

.reservation-self-message.is-warning {
  border-color: rgba(181, 121, 128, 0.38);
  background: #fff1f3;
}

.reservation-self-message.is-muted {
  color: var(--sub);
}

.reservation-self-details {
  margin: 18px 0 22px;
}

.reservation-self-details dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.reservation-self-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.reservation-self-details dt {
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
}

.reservation-self-details dd {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.reservation-self-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-action.is-danger {
  border-color: #7d3b47;
  background: #7d3b47;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-row button,
.date-grid button,
.time-grid button,
.staff-option,
.menu-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.filter-row button {
  min-height: 36px;
  padding: 0 12px;
}

.filter-row button.is-active,
.menu-option.is-selected,
.staff-option.is-selected,
.date-grid button.is-selected,
.time-grid button.is-selected {
  border-color: var(--sage);
  background: var(--mist);
  box-shadow: inset 3px 0 0 var(--coral);
}

.menu-list {
  display: grid;
  gap: 10px;
}

.option-block {
  margin-top: 20px;
}

.option-block:first-of-type {
  margin-top: 0;
}

.option-block h4 {
  margin: 0 0 12px;
  font-size: 16px;
}

.required-label {
  display: inline-flex;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 4px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}

.addon-list,
.off-list {
  display: grid;
  gap: 10px;
}

.option-none {
  display: grid;
  width: 100%;
  gap: 2px;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.option-none span {
  color: var(--sub);
  font-size: 13px;
}

.option-none.is-selected {
  border-color: var(--sage);
  background: var(--mist);
  box-shadow: inset 3px 0 0 var(--coral);
}

.addon-card,
.off-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.addon-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.addon-card p {
  margin: 4px 0 6px;
  color: var(--sub);
  font-size: 13px;
}

.addon-card span,
.addon-total small {
  color: var(--sub);
  font-size: 13px;
}

.qty-control {
  display: grid;
  grid-template-columns: 36px 52px 36px;
  align-items: center;
  gap: 6px;
}

.qty-control button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--mist);
  color: var(--sage);
  cursor: pointer;
  font-weight: 900;
}

.qty-control button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.qty-control strong {
  text-align: center;
}

.addon-total {
  display: grid;
  justify-items: end;
  min-width: 92px;
}

.addon-total span {
  color: var(--coral);
  font-weight: 800;
}

.off-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.off-option strong,
.off-option span {
  display: block;
}

.off-option > span > span {
  color: var(--sub);
  font-size: 13px;
}

.off-option.is-selected {
  border-color: var(--sage);
  background: var(--mist);
  box-shadow: inset 3px 0 0 var(--coral);
}

.step-next {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.selection-notice {
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.selection-notice.is-complete {
  color: var(--sage);
}

.step-tab:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.menu-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  text-align: left;
}

.menu-option strong,
.staff-option strong {
  display: block;
}

.menu-option span,
.staff-option span,
.menu-card span {
  color: var(--sub);
  font-size: 13px;
}

.menu-price {
  color: var(--coral);
  font-weight: 800;
  white-space: nowrap;
}

.menu-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.select-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--coral) !important;
  font-size: 12px !important;
  font-weight: 800;
}

.menu-option.is-selected .select-badge {
  background: var(--sage);
  color: #fff !important;
}

.staff-choice,
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.staff-option {
  padding: 18px;
  text-align: left;
}

.staff-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: var(--rose);
  color: var(--coral);
  font-weight: 900;
}

.date-grid,
.time-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.date-grid button,
.time-grid button {
  min-height: 58px;
}

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

.booking-staff-selector {
  min-inline-size: 0;
  margin: 0 0 18px;
  padding: 10px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.booking-staff-selector > legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking-staff-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
  gap: 8px;
}

.booking-staff-option {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.booking-staff-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-staff-option span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.booking-staff-option input:checked + span {
  border-color: var(--customer-accent, var(--coral));
  background: var(--customer-accent-soft, var(--rose));
  color: var(--customer-accent, var(--coral));
}

.booking-staff-option input:focus-visible + span {
  outline: 3px solid rgba(143, 62, 91, 0.24);
  outline-offset: 2px;
}

.schedule-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.schedule-toolbar strong {
  text-align: center;
}

.week-action {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.week-action:first-child {
  justify-self: start;
}

.week-action:last-child {
  justify-self: end;
}

.week-action:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 10px;
  color: var(--sub);
  font-size: 12px;
}

.schedule-legend b {
  color: #a4a09d;
  font-size: 17px;
}

.schedule-legend .legend-open {
  color: var(--sage);
}

.schedule-scroll {
  max-height: 560px;
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 72px var(--schedule-day-columns, repeat(7, minmax(66px, 1fr)));
  min-width: 610px;
}

.schedule-corner,
.schedule-date,
.schedule-time,
.schedule-slot {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-corner,
.schedule-date {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.schedule-corner {
  left: 0;
  z-index: 4;
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
}

.schedule-date {
  align-content: center;
  gap: 0;
  text-align: center;
}

.schedule-date strong,
.schedule-date span,
.schedule-date small {
  line-height: 1.25;
}

.schedule-date strong {
  font-size: 17px;
}

.schedule-date span {
  font-size: 12px;
  font-weight: 700;
}

.schedule-date small {
  margin-top: 3px;
  color: var(--sub);
  font-size: 10px;
}

.schedule-date.is-business-day small {
  color: var(--sage);
  font-weight: 800;
}

.schedule-date.is-closed-day {
  background: #f3f1ee;
}

.schedule-time {
  position: sticky;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.schedule-slot {
  display: grid;
  place-items: center;
  border-radius: 0;
  background: #fff;
  font-size: 25px;
  font-weight: 500;
}

.schedule-slot.is-open {
  color: var(--sage);
  cursor: pointer;
}

.schedule-slot.is-open:hover {
  background: var(--mist);
}

.schedule-slot.is-closed {
  background: #f3f1ee;
  color: #aaa6a2;
  cursor: not-allowed;
  opacity: 1;
}

.schedule-slot.is-selected {
  background: var(--sage);
  color: #fff;
}

.management-schedule-slot {
  align-content: center;
  gap: 2px;
  padding: 5px 4px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
}

.management-schedule-slot strong,
.management-schedule-slot small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-schedule-slot.is-open strong {
  font-size: 23px;
  font-weight: 500;
}

.management-schedule-slot small {
  font-size: 10px;
  font-weight: 700;
}

.management-schedule-slot.is-reason-booked {
  background: #f8e7ed;
  color: #8f3e5b;
}

.management-schedule-slot.is-reason-blocked {
  background: #e8e3df;
  color: #5e5652;
}

.management-schedule-slot.is-reason-completed {
  background: #dedddb;
  color: #77716e;
}

.management-schedule-slot.is-reason-disabled {
  background: #f4f2f0;
  color: #aaa5a1;
}

.management-schedule-slot.is-reservation-action {
  cursor: pointer;
}

.management-schedule-slot.is-block-action {
  cursor: pointer;
}

.management-schedule-slot.is-reservation-action:hover {
  border-color: rgba(143, 62, 91, 0.45);
  box-shadow: inset 0 0 0 2px rgba(143, 62, 91, 0.16);
}

.management-schedule-slot.is-block-action:hover {
  border-color: rgba(94, 86, 82, 0.42);
  box-shadow: inset 0 0 0 2px rgba(94, 86, 82, 0.14);
}

.management-schedule-slot.is-reservation-action:focus-visible {
  outline: 3px solid rgba(143, 62, 91, 0.32);
  outline-offset: -3px;
}

.management-schedule-slot.is-block-action:focus-visible {
  outline: 3px solid rgba(94, 86, 82, 0.28);
  outline-offset: -3px;
}

.management-schedule-slot.is-event-start {
  align-content: start;
  padding-top: 8px;
}

.management-schedule-slot.is-event-continuation {
  border-top-color: transparent;
}

.management-schedule-slot.is-event-continuation strong {
  min-height: 1em;
}

.schedule-selection {
  margin: 10px 0 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.customer-form {
  display: grid;
  gap: 16px;
}

.returning-customer-panel,
.customer-manual-entry {
  min-inline-size: 0;
  border: 1px solid rgba(173, 85, 115, 0.24);
  border-radius: 16px;
}

.returning-customer-panel {
  margin: 0 0 28px;
  padding: 12px 16px 18px;
  background: #fdf9fa;
}

.returning-customer-panel > legend,
.customer-manual-entry > legend {
  padding: 0 9px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.returning-customer-actions {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 240px), 1fr)
  );
  gap: 12px;
  margin-top: 4px;
}

.customer-manual-entry {
  margin: 0;
  padding: 12px 16px 18px;
  background: #fff;
}

.customer-manual-fields {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.line-booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.line-booking-panel > div:first-child {
  flex: 1 1 280px;
  min-width: 0;
}

.line-booking-panel strong {
  display: block;
  color: var(--ink);
}

.line-booking-panel p {
  margin: 4px 0 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.6;
}

.line-consult-guide {
  flex: 1 0 100%;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.88);
}

.line-consult-guide p,
.line-consult-guide small {
  margin: 0;
}

.line-consult-guide img {
  width: min(180px, 70vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.line-connect-action {
  flex: 0 0 auto;
  min-width: 190px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.line-connect-action:hover:not(:disabled) {
  background: #05b94e;
}

.line-connect-action:disabled {
  background: #d8d3cf;
  color: #716c68;
  cursor: default;
}

.line-booking-panel.is-linked {
  border-color: rgba(173, 85, 115, 0.3);
  background: var(--rose);
}

.returning-customer-panel .line-booking-panel,
.returning-customer-panel .customer-easy-entry-panel,
.returning-customer-panel
  .customer-easy-entry-panel.has-device-token {
  min-height: 100%;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(111, 78, 92, 0.16);
  border-radius: 10px;
  background: #fff;
}

.returning-customer-panel .line-booking-panel {
  display: grid;
  align-content: start;
  justify-content: stretch;
  justify-items: stretch;
}

.returning-customer-panel .line-connect-action,
.returning-customer-panel .customer-easy-entry-action {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
}

.returning-customer-panel .customer-easy-entry-heading {
  align-items: stretch;
  flex-direction: column;
}

.customer-form label {
  display: grid;
  gap: 6px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 700;
}

.form-required,
.form-optional {
  display: inline-flex;
  margin-left: 5px;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.5;
}

.form-required {
  background: var(--coral);
  color: #fff;
}

.form-optional {
  background: #e9e5e0;
  color: var(--sub);
}

.form-hint {
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.customer-form input,
.customer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: start;
  gap: 10px !important;
}

.check-row input {
  width: auto;
  margin-top: 6px;
}

.privacy-consent,
.policy-consent {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.customer-easy-entry-panel {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.customer-easy-entry-panel.has-device-token {
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(111, 78, 92, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffafc, #fff);
}

.customer-easy-entry-panel[hidden],
.customer-easy-entry-heading[hidden],
.customer-easy-entry-action[hidden] {
  display: none;
}

.customer-easy-entry-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.customer-easy-entry-heading strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.customer-easy-entry-action {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--customer-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.customer-easy-entry-action:hover:not(:disabled) {
  background: var(--customer-accent-hover);
}

.customer-easy-entry-action:disabled {
  cursor: wait;
  opacity: 0.65;
}

.customer-easy-entry-status,
.customer-recovery-link {
  margin: 0;
  font-size: 0.82rem;
}

.customer-easy-entry-status {
  min-height: 1.4em;
  color: var(--customer-accent-hover);
}

.customer-easy-entry-status:empty {
  display: none;
}

.customer-easy-entry-panel:not(.has-device-token)
  .customer-easy-entry-status {
  display: none;
}

.customer-recovery-link {
  justify-self: start;
  color: var(--customer-accent-hover);
  font-weight: 700;
  text-underline-offset: 3px;
}

.marketing-email-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.marketing-email-consent input {
  flex: 0 0 8px;
  width: 8px !important;
  height: 8px;
  margin: 4px 0 0;
  padding: 0;
  accent-color: var(--customer-accent);
}

.marketing-email-consent span {
  display: grid;
  gap: 1px;
}

.marketing-email-consent strong {
  color: var(--ink);
  font-size: 0.68rem;
  line-height: 1.35;
}

.marketing-email-consent small {
  color: var(--sub);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.35;
}

.customer-email-contact[hidden],
.marketing-email-consent[hidden],
.new-customer-line-connect[hidden] {
  display: none !important;
}

.new-customer-line-connect {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding-top: 2px;
}

.new-customer-line-connect p,
.new-customer-line-connect small {
  margin: 0;
  color: var(--sub);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.45;
}

.new-customer-line-connect-action {
  width: min(52%, 210px);
  min-width: 148px;
  min-height: 38px;
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  background: #06c755;
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.new-customer-line-connect-action:hover:not(:disabled) {
  background: #05b94e;
}

.new-customer-line-connect-action:disabled {
  background: #d8d3cf;
  color: #716c68;
  cursor: default;
}

#new-customer-line-connect-status:empty {
  display: none;
}

.customer-marketing-consent-admin {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(111, 78, 92, 0.18);
  border-radius: 16px;
  background: #fffafc;
}

.customer-marketing-consent-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.customer-marketing-consent-heading strong {
  display: block;
  color: #503845;
}

.customer-marketing-consent-heading p {
  margin: 3px 0 0;
  color: #78636d;
  font-size: 0.78rem;
}

.customer-marketing-status {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eee8eb;
  color: #66555e;
  font-size: 0.75rem;
  font-weight: 700;
}

.customer-marketing-status.is-allowed {
  background: #e5f4eb;
  color: #286343;
}

.customer-marketing-status.is-blocked {
  background: #f7e7e7;
  color: #963f46;
}

.customer-marketing-current {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
}

.customer-marketing-current div {
  display: grid;
  gap: 2px;
}

.customer-marketing-current dt {
  color: #8a737e;
  font-size: 0.72rem;
}

.customer-marketing-current dd {
  margin: 0;
  color: #4f3c45;
  font-size: 0.82rem;
}

.customer-marketing-consent-admin details {
  border-top: 1px solid rgba(111, 78, 92, 0.12);
  padding-top: 10px;
}

.customer-marketing-consent-admin summary {
  color: #5d4450;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.customer-marketing-record-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.customer-marketing-evidence {
  grid-column: 1 / -1;
}

.customer-marketing-explicit-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  color: #5d4450;
  font-size: 0.78rem;
  line-height: 1.5;
}

.customer-marketing-explicit-check input {
  width: 17px !important;
  height: 17px;
  margin-top: 2px;
}

.customer-marketing-history-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 4px 10px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  color: #66555e;
  font-size: 0.76rem;
}

.customer-marketing-history-row p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

@media (max-width: 760px) {
  .customer-easy-entry-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-easy-entry-action {
    width: 100%;
  }

  .customer-marketing-record-fields,
  .customer-marketing-current {
    grid-template-columns: 1fr;
  }

  .customer-marketing-history-row {
    grid-template-columns: 1fr;
  }
}

.privacy-consent > strong,
.policy-consent > strong {
  display: block;
  margin-bottom: 6px;
}

.privacy-consent > p,
.policy-consent > p {
  margin: 0 0 12px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.7;
}

.policy-consent {
  background: var(--rose);
}

.policy-consent ul {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
}

.privacy-consent .check-row,
.policy-consent .check-row {
  color: var(--ink);
}

.booking-summary {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.booking-summary dl,
.customer-record {
  display: grid;
  gap: 16px;
  margin: 0;
}

.booking-summary dl div,
.customer-record div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
}

.summary-course-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.summary-course-list li {
  padding-left: 2px;
}

.summary-note,
.completion {
  margin: 18px 0 0;
  color: var(--sub);
  font-size: 13px;
}

.completion {
  padding: 12px;
  border: 1px solid #cbc5c0;
  border-radius: 6px;
  background: var(--mist);
  color: var(--sage);
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.confirmation-modal[hidden] {
  display: none;
}

.confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 33, 31, 0.58);
}

.confirmation-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.confirmation-dialog h2 {
  margin: 2px 36px 20px 0;
  font-size: 25px;
}

.confirmation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.confirmation-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.confirmation-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.confirmation-list dd {
  margin: 0;
  font-weight: 700;
}

.confirmation-note {
  margin: 16px 0;
  color: var(--sub);
  font-size: 14px;
}

.confirmation-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.menu-card,
.staff-card,
.review-card,
.blog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.menu-card strong {
  display: block;
  margin-bottom: 8px;
}

.muted-band {
  background: var(--mist);
}

.staff-intro {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

#staff {
  padding-block: 44px;
}

.staff-intro h2 {
  margin-bottom: 0;
}

.staff-grid {
  display: block;
}

.staff-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  border-left: 3px solid var(--sage);
  border-radius: 0;
  box-shadow: none;
}

.staff-card h3,
.staff-card p {
  margin-bottom: 0;
}

.staff-card > div p {
  color: var(--sub);
  font-size: 13px;
}

.staff-card .skill {
  color: var(--ink);
  font-size: 14px;
}

.staff-card.has-photo {
  grid-template-columns: 118px minmax(0, 1fr);
}

.staff-card-photo {
  width: 118px;
  height: 118px;
  border-radius: 8px;
  object-fit: cover;
}

.staff-card-copy {
  display: grid;
  gap: 10px;
}

.staff-card-copy > strong {
  color: var(--ink);
  font-size: 14px;
}

.gallery-section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.gallery-heading {
  display: grid;
  align-content: center;
  gap: 16px;
}

.gallery-heading h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.gallery-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--sub);
  font-size: 13px;
}

.gallery-section .section-more {
  justify-content: flex-end;
  margin-top: 14px;
}

.gallery-section .section-more .ghost-action {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

.gallery-stage {
  position: relative;
}

.gallery-grid.featured-design-grid {
  display: grid;
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  overflow-x: visible;
  overflow: visible;
  scroll-snap-type: none;
  scrollbar-width: auto;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

#gallery-previous {
  left: -21px;
}

#gallery-next {
  right: -21px;
}

.gallery-carousel {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4px) / 2);
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(2.15);
}

.featured-design-grid .gallery-item {
  scroll-snap-align: initial;
}

.featured-design-grid .gallery-item img {
  transform: none;
}

@keyframes myuco-soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .weekly-availability-today-badge i {
    animation: weekly-availability-today-pulse 1.8s ease-in-out infinite;
  }

  body:not([data-content-page]) .weekly-availability-inner,
  body:not([data-content-page]) .booking-layout > .section-heading,
  body:not([data-content-page]) .booking-main {
    animation: myuco-soft-rise 0.72s ease both;
  }

  body:not([data-content-page]) .booking-main {
    animation-delay: 0.08s;
  }

  .featured-design-grid .gallery-item,
  .mobile-directory-card {
    animation: myuco-soft-rise 0.72s ease both;
  }

  .featured-design-grid .gallery-item:nth-child(2),
  .mobile-directory-card:nth-child(2) {
    animation-delay: 0.08s;
  }

  .featured-design-grid .gallery-item:nth-child(3),
  .mobile-directory-card:nth-child(3) {
    animation-delay: 0.16s;
  }

  .mobile-directory-card:nth-child(4) {
    animation-delay: 0.24s;
  }
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.split-section .section-more {
  justify-content: flex-end;
}

.split-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

.compact-reviews {
  padding-block: 48px;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.compact-reviews h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.compact-reviews .review-card {
  padding: 15px 16px;
}

.compact-reviews .review-card p {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.compact-reviews .stars {
  font-size: 13px;
}

.compact-reviews .section-more {
  margin-top: 14px;
}

.compact-reviews .section-more .ghost-action {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

.review-list,
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-card p {
  color: var(--sub);
}

.compact-information {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-block: 48px;
  border-top: 1px solid var(--line);
  background: #efede9;
}

.compact-information h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.compact-information > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--sub);
  font-size: 13px;
}

.compact-information .blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.compact-information .blog-card {
  display: grid;
  grid-template-columns: 96px 130px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.compact-information .blog-card time,
.compact-information .blog-card span {
  color: var(--sub);
  font-size: 12px;
}

.compact-information .blog-card span {
  width: fit-content;
  padding: 1px 8px;
  background: var(--rose);
  color: var(--coral);
  font-weight: 800;
}

.compact-information .blog-card strong {
  min-width: 0;
  font-size: 14px;
}

.compact-information .blog-card b {
  font-size: 24px;
  font-weight: 400;
}

.compact-information .section-more {
  justify-content: flex-end;
  margin-top: 14px;
}

.compact-information .section-more .ghost-action {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

.stars {
  color: #d2a51f;
  font-weight: 900;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #efede9;
}

.access-section h2 {
  font-size: 32px;
}

.access-public-settings {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.access-public-settings > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  font-size: 13px;
}

.access-public-settings dt {
  color: var(--sub);
  font-weight: 700;
}

.access-public-settings dd {
  margin: 0;
}

.content-page {
  width: min(1180px, 100%);
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 72px clamp(20px, 6vw, 72px);
}

.content-page-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.content-page-heading .eyebrow {
  color: #b26f86;
  font-weight: 600;
}

.content-page-heading h1 {
  color: #514c4a;
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 400;
}

.content-page-heading p:not(.eyebrow) {
  color: var(--sub);
}

.staff-page {
  max-width: 1040px;
}

.staff-page-status {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--sub);
  text-align: center;
}

.staff-page-list {
  display: grid;
  gap: 18px;
}

.staff-profile-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 8px;
  background: #fff;
}

.staff-profile-photo {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose);
  color: var(--coral);
  font-size: 40px;
  font-weight: 800;
}

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

.staff-profile-copy {
  display: grid;
  gap: 10px;
}

.staff-profile-copy h2,
.staff-profile-copy p {
  margin: 0;
}

.staff-profile-copy h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.staff-profile-meta {
  color: var(--sub);
  font-size: 13px;
}

.staff-profile-tagline {
  color: var(--coral);
  font-size: 15px;
}

.staff-profile-biography {
  white-space: pre-line;
  color: var(--sub);
  line-height: 1.85;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 18px 48px 18px 20px;
  color: #5a5553;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

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

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--sub);
  line-height: 1.85;
}

.faq-cta {
  max-width: 920px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  background: var(--rose);
}

.faq-cta h2 {
  margin: 0 0 8px;
  color: #5a5553;
  font-size: 24px;
  font-weight: 500;
}

.faq-cta p {
  margin: 0 0 16px;
  color: var(--sub);
}

.content-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.content-gallery-tabs {
  display: grid;
  gap: 8px;
  margin: -6px 0 16px;
}

.content-gallery-mobile-controls,
.content-gallery-filter-actions {
  display: none;
}

.content-gallery-filter-panel {
  display: grid;
  gap: 8px;
}

.gallery-instagram-row {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 18px;
}

.gallery-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
}

.content-gallery-filter-group {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.content-gallery-filter-group > span {
  color: var(--sub);
  font-size: 11px;
  font-weight: 900;
  line-height: 32px;
}

.content-gallery-filter-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.content-gallery-filter-group button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--sub);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.gallery-color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 1px solid rgba(45, 43, 43, 0.2);
  border-radius: 50%;
  background: #d6d2ce;
}

.gallery-color-swatch.is-pink {
  background: #e7a3b8;
}

.gallery-color-swatch.is-red {
  background: #a84756;
}

.gallery-color-swatch.is-beige {
  background: #d8c3a8;
}

.gallery-color-swatch.is-brown {
  background: #76584e;
}

.gallery-color-swatch.is-white {
  background: #faf9f6;
}

.gallery-color-swatch.is-black {
  background: #3e3c3c;
}

.gallery-color-swatch.is-blue {
  background: #73a6c4;
}

.gallery-color-swatch.is-green {
  background: #7e9a83;
}

.gallery-color-swatch.is-purple {
  background: #9a87ad;
}

.gallery-color-swatch.is-yellow {
  background: #d7ad4c;
}

.gallery-color-swatch.is-metallic {
  background: #b7a78d;
}

.gallery-color-swatch.is-multi {
  background: conic-gradient(
    #d58aa3 0 20%,
    #d7ad4c 20% 40%,
    #7e9a83 40% 60%,
    #73a6c4 60% 80%,
    #9a87ad 80% 100%
  );
}

.content-gallery-filter-group button[aria-pressed="true"] {
  border-color: var(--coral);
  background: var(--rose);
  color: var(--ink);
}

.content-gallery-item {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.content-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-gallery-item:hover img,
.content-gallery-item:focus-visible img {
  opacity: 0.88;
}

.gallery-detail-image-wrap {
  position: relative;
}

.gallery-promotion-badge {
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 9px;
  display: inline-flex;
  max-width: calc(100% - 18px);
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(35, 31, 30, 0.13);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: gallery-promotion-soft-pulse 2.4s ease-in-out infinite;
}

.gallery-promotion-badge.is-new {
  --promotion-glow: rgba(183, 88, 118, 0.38);
  background: #b75876;
}

.gallery-promotion-badge.is-campaign {
  --promotion-glow: rgba(201, 47, 124, 0.44);
  background: #c92f7c;
}

@keyframes gallery-promotion-soft-pulse {
  0%,
  100% {
    box-shadow:
      0 4px 13px rgba(35, 31, 30, 0.15),
      0 0 0 0 var(--promotion-glow);
    opacity: 0.94;
  }
  50% {
    box-shadow:
      0 5px 18px rgba(35, 31, 30, 0.13),
      0 0 16px 6px var(--promotion-glow);
    opacity: 1;
  }
}

.gallery-campaign-detail {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border-top: 1px solid #e9d6ab;
  background: #fff8e8;
}

.gallery-campaign-detail > span {
  color: #8a5d16;
  font-size: 11px;
  font-weight: 900;
}

.gallery-campaign-detail strong {
  color: var(--ink);
  font-size: 19px;
}

.gallery-campaign-detail p,
.gallery-campaign-detail small {
  margin: 0;
  color: var(--sub);
}

.gallery-campaign-detail b {
  color: #8a5d16;
  font-size: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-promotion-badge {
    animation: none;
  }
}

.gallery-detail-dialog {
  width: min(680px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: auto;
  background: #fff;
  color: var(--ink);
}

.gallery-detail-dialog::backdrop {
  background: rgba(24, 22, 21, 0.72);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 10px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 10px 10px -52px 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.gallery-detail-copy,
.gallery-coupon {
  padding: 20px;
}

.gallery-detail-copy span,
.gallery-coupon > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.gallery-detail-copy h2 {
  margin: 5px 0 8px;
  font-size: 24px;
}

.gallery-detail-copy p,
.gallery-coupon p {
  margin-bottom: 0;
  color: var(--sub);
}

.gallery-coupon {
  display: grid;
  gap: 8px;
  border-top: 8px solid var(--mist);
}

.gallery-coupon strong {
  font-size: 19px;
}

.gallery-coupon b {
  color: var(--sage);
  font-size: 24px;
}

.gallery-coupon .primary-action {
  margin-top: 8px;
}

.content-review-list,
.content-blog-list {
  display: grid;
  gap: 16px;
}

.content-review-card,
.content-blog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content-review-card {
  padding: 22px;
}

.content-review-card > strong {
  color: #5a5553;
  font-weight: 500;
}

.content-review-card p {
  margin: 12px 0;
  color: var(--ink);
  white-space: pre-line;
}

.content-review-card small,
.content-blog-card span {
  color: var(--sub);
}

.review-posted-at {
  display: block;
  margin-top: 2px;
  color: var(--sub);
  font-size: 12px;
}

.content-blog-card {
  overflow: hidden;
}

.content-blog-card summary,
.content-blog-summary {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.content-blog-summary {
  color: inherit;
  text-decoration: none;
}

.content-blog-summary:hover .blog-list-copy strong {
  color: var(--coral);
}

.content-blog-card summary::-webkit-details-marker {
  display: none;
}

.blog-thumbnail,
.blog-date-thumbnail {
  display: grid;
  width: 180px;
  aspect-ratio: 1.4;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  object-fit: cover;
  background: var(--mist);
  color: var(--sage);
  font-weight: 900;
}

.blog-thumbnail {
  display: block;
}

.content-blog-card .blog-date-thumbnail {
  align-content: center;
  gap: 3px;
  background: var(--rose);
  color: var(--coral);
  text-align: center;
}

.blog-date-thumbnail small {
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.blog-date-thumbnail strong {
  font-size: 28px;
  line-height: 1;
}

.blog-list-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.blog-list-copy small {
  width: fit-content;
  padding: 2px 10px;
  background: var(--rose);
  color: var(--coral);
  font-weight: 600;
}

.blog-list-copy strong {
  margin: 4px 0;
  color: #5a5553;
  font-size: 20px;
  font-weight: 500;
}

.blog-list-copy > span {
  font-size: 13px;
}

.blog-expanded-body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}

.blog-expanded-body p {
  margin: 18px 0 0;
  white-space: pre-line;
}

.content-blog-detail-root {
  max-width: 840px;
  margin: 0 auto;
}

.content-blog-detail {
  display: grid;
  gap: 22px;
}

.content-back-link {
  width: fit-content;
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.content-back-link:hover {
  color: var(--coral);
}

.content-blog-detail-heading {
  display: grid;
  gap: 10px;
}

.content-blog-detail-heading small {
  width: fit-content;
  padding: 3px 12px;
  background: var(--rose);
  color: var(--coral);
  font-weight: 600;
}

.content-blog-detail-heading h1 {
  max-width: 780px;
  margin: 0;
  color: #514c4a;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.content-blog-detail-heading span {
  color: var(--sub);
  font-size: 14px;
}

.content-blog-hero-image {
  display: block;
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--mist);
}

.content-blog-detail-body {
  padding-top: 4px;
  font-size: 17px;
  line-height: 1.9;
}

.content-blog-detail-body p {
  margin: 16px 0;
}

.content-blog-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.rich-notice-content h2,
.rich-notice-content h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  letter-spacing: 0;
}

.rich-notice-content h2 {
  font-size: 24px;
}

.rich-notice-content h3 {
  font-size: 20px;
}

.rich-notice-content em,
.rich-notice-content i {
  font-style: oblique;
  font-style: oblique 12deg;
  font-synthesis: style;
}

.rich-notice-content ul,
.rich-notice-content ol {
  margin: 16px 0 0;
  padding-left: 1.5em;
}

.rich-notice-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 680px;
  margin: 20px auto 0;
  border-radius: 6px;
  object-fit: contain;
}

.rich-notice-content figure {
  width: min(100%, 880px);
  margin: 24px auto;
  padding: 0;
  text-align: center;
}

.rich-notice-content figure img {
  width: auto;
  margin: 0 auto;
}

.rich-notice-content figcaption {
  margin: 9px auto 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.top-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.access-address {
  white-space: pre-line;
  color: var(--sub);
  font-weight: 400;
}

#access-main {
  white-space: pre-line;
}

#access-page-main {
  white-space: pre-line;
}

.google-map {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f3f1ee;
}

.google-map iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.google-map a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(45, 43, 43, 0.16);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.admin-preview {
  background: #302e2f;
  border-top: 1px solid #f2b5ca;
  color: #fff;
}

.admin-preview .eyebrow,
.admin-preview .section-heading p {
  color: #f2b5ca;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.admin-tab {
  flex: 0 0 auto;
  min-width: 88px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  border-color: #fff;
}

.admin-tab.is-active {
  border-color: #f2b5ca;
  background: #f2b5ca;
  color: #302e2f;
}

.admin-tab.is-maintenance-disabled::after {
  margin-left: 6px;
  color: #f2b5ca;
  content: "停止中";
  font-size: 9px;
}

.admin-panel {
  color: var(--ink);
  box-shadow: none;
}

.admin-tab-panel {
  display: none;
  grid-column: 1 / -1;
}

.admin-tab-panel.is-active {
  display: block;
}

.admin-digest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.admin-digest button,
.admin-digest-card {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.admin-digest button {
  cursor: pointer;
}

.admin-digest button:hover,
.admin-digest button:focus-visible {
  border-color: var(--coral);
  background: var(--rose);
}

.admin-digest span,
.admin-digest strong,
.admin-digest small,
.admin-digest label {
  display: block;
}

.admin-digest span {
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.admin-digest strong {
  margin: 8px 0 5px;
  font-size: 24px;
}

.admin-digest small {
  color: var(--sub);
}

.digest-month-select {
  margin-top: 10px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.digest-month-select select {
  width: 100%;
  min-height: 36px;
  margin-top: 4px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.digest-forecast-lines {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.digest-forecast-lines small {
  padding: 7px 8px;
  border-left: 2px solid var(--coral);
  background: #f7f5f2;
}

.digest-forecast-lines b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.customer-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.customer-panel-heading h3,
.customer-panel-heading p {
  margin: 0;
}

.customer-panel-heading p {
  margin-top: 4px;
  color: var(--sub);
  font-size: 13px;
}

.customer-search {
  display: grid;
  flex: 0 1 310px;
  gap: 4px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.customer-search input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.customer-duplicate-panel {
  margin-bottom: 14px;
}

.customer-duplicate-clear,
.customer-duplicate-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #f4f2f0;
}

.customer-duplicate-clear strong,
.customer-duplicate-clear span,
.customer-duplicate-heading strong,
.customer-duplicate-heading span {
  display: block;
}

.customer-duplicate-clear strong {
  color: var(--sage);
}

.customer-duplicate-clear span,
.customer-duplicate-heading span {
  margin-top: 3px;
  color: var(--sub);
  font-size: 12px;
}

.customer-duplicate-heading {
  border-color: #e7b6c7;
  background: #fff2f6;
}

.customer-duplicate-heading strong {
  color: #9a3f60;
}

.customer-duplicate-list {
  border: 1px solid #e7b6c7;
  border-top: 0;
}

.customer-duplicate-list button {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.customer-duplicate-list button:last-child {
  border-bottom: 0;
}

.customer-duplicate-list span,
.customer-duplicate-list strong,
.customer-duplicate-list small {
  display: block;
}

.customer-duplicate-list small {
  margin-top: 3px;
  color: var(--sub);
}

.customer-duplicate-list b {
  color: #a44365;
  font-size: 12px;
  white-space: nowrap;
}

.customer-merge-dialog {
  width: min(760px, calc(100vw - 32px));
}

.customer-merge-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.customer-merge-card {
  display: block;
  cursor: pointer;
}

.customer-merge-card > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customer-merge-card-body {
  display: grid;
  gap: 5px;
  min-height: 100%;
  padding: 14px;
  border: 2px solid var(--line);
  background: #fff;
}

.customer-merge-card > input:checked + .customer-merge-card-body {
  border-color: var(--pink);
  background: #fff3f7;
}

.customer-merge-card-body > b {
  color: var(--sub);
  font-size: 11px;
}

.customer-merge-card > input:checked + .customer-merge-card-body > b {
  color: #a44365;
}

.customer-merge-card-body > strong {
  font-size: 18px;
}

.customer-merge-card-body > small {
  color: var(--sub);
}

.customer-merge-card-body dl {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
}

.customer-merge-card-body dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 12px;
}

.customer-merge-card-body dt {
  color: var(--sub);
}

.customer-merge-card-body dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.customer-merge-confirmation {
  align-items: center;
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.customer-merge-dialog .confirmation-actions {
  flex-wrap: wrap;
}

.customer-edit-dialog {
  width: min(680px, calc(100vw - 32px));
}

.customer-edit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.customer-edit-form > label {
  display: grid;
  gap: 6px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.customer-edit-form input,
.customer-edit-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.customer-edit-notes,
.customer-line-status,
.customer-edit-form .admin-form-message,
.customer-edit-form .confirmation-actions,
.customer-delete-zone {
  grid-column: 1 / -1;
}

.customer-line-status {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f4f2f0;
}

.customer-delete-zone {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.customer-delete-zone p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.customer-line-status span {
  color: var(--sub);
  font-size: 12px;
}

.schedule-block-panel,
.sales-panel,
.photo-manager-panel,
.notice-manager-panel {
  grid-column: 1 / -1;
}

.notice-manager-form {
  display: grid;
  grid-template-columns: 180px 220px minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.notice-manager-form label {
  display: grid;
  gap: 5px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.notice-field-label {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.notice-manager-form input,
.notice-manager-form select,
.notice-manager-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.notice-manager-form textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.7;
}

.notice-title-field,
.notice-body-field,
.notice-ai-panel,
.notice-seo-panel {
  grid-column: 1 / -1;
}

.notice-ai-panel,
.notice-seo-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf8;
}

.notice-ai-panel {
  grid-template-columns: 180px minmax(0, 1fr) 220px;
}

.notice-ai-panel-heading,
.notice-ai-panel > label:nth-of-type(2),
#notice-ai-message,
.notice-seo-wide {
  grid-column: 1 / -1;
}

.notice-ai-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.notice-ai-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.notice-seo-panel summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.notice-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  padding-top: 8px;
}

.notice-body-field {
  display: grid;
  gap: 5px;
}

.notice-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #f3f1ee;
}

.notice-editor-toolbar button {
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid #cec8c4;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.notice-editor-toolbar button:hover {
  border-color: var(--coral);
}

.notice-toolbar-group {
  display: inline-flex;
  gap: 4px;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}

.notice-editor-toolbar .notice-color-swatch,
.notice-editor-toolbar .notice-marker-swatch {
  position: relative;
  min-width: 32px;
  width: 32px;
  padding: 0;
}

.notice-color-swatch::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.notice-color-swatch.is-ink { color: #25211f; }
.notice-color-swatch.is-pink { color: #b44f70; }
.notice-color-swatch.is-green { color: #477568; }
.notice-marker-swatch.is-yellow { background: #fff2a8; }
.notice-marker-swatch.is-pink { background: #fde0e8; }
.notice-marker-swatch.is-blue { background: #dff1f5; }

.notice-rich-editor {
  min-height: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0 0 5px 5px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  line-height: 1.8;
  outline: none;
}

.notice-rich-editor *,
.rich-notice-content * {
  font-family: inherit !important;
}

.notice-rich-editor:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 2px rgba(180, 79, 112, 0.1);
}

.notice-rich-editor:empty::before {
  color: #9b9490;
  content: attr(data-placeholder);
  pointer-events: none;
}

.notice-rich-editor h2,
.notice-rich-editor h3 {
  margin: 18px 0 8px;
  letter-spacing: 0;
}

.notice-rich-editor p {
  margin: 8px 0;
}

.notice-rich-editor img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  margin: 16px auto;
  border-radius: 6px;
  object-fit: contain;
}

.notice-editor-help {
  margin: 2px 0 0;
  color: var(--sub);
  font-size: 12px;
}

.notice-manager-list {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.maintenance-panel {
  grid-column: 1 / -1;
}

.maintenance-form {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.maintenance-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--sub);
  font-size: 12px;
}

.maintenance-legend span:first-child b {
  color: var(--coral);
}

.maintenance-legend span:last-child b {
  color: var(--ink);
}

.maintenance-storage-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--coral);
  background: var(--rose);
  color: var(--sub);
  font-size: 12px;
}

.maintenance-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.maintenance-feature-list label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.maintenance-feature-list label:has(input:not(:checked)) {
  background: #dedbd7;
  opacity: 0.65;
}

.maintenance-feature-list label > span,
.maintenance-feature-list strong,
.maintenance-feature-list small {
  display: block;
}

.maintenance-feature-list small {
  margin-top: 2px;
  color: var(--sub);
}

.maintenance-feature-list input {
  width: 42px;
  height: 22px;
  accent-color: var(--coral);
}

.maintenance-message-field {
  display: grid;
  gap: 6px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.maintenance-message-field textarea {
  min-height: 90px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.maintenance-save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.maintenance-save-row p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.is-under-maintenance {
  position: relative;
}

.is-under-maintenance > :not(.section-maintenance-notice) {
  opacity: 0.24;
  pointer-events: none;
  user-select: none;
}

.section-maintenance-notice {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(560px, calc(100% - 40px));
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  background: #302e2f;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.section-maintenance-notice span {
  color: #e2dcda;
  font-size: 13px;
}

.maintenance-dialog {
  max-width: 520px;
}

.content-maintenance-state {
  display: grid;
  justify-items: start;
  max-width: 680px;
  gap: 8px;
  padding: 36px;
  border-left: 4px solid var(--coral);
  background: #302e2f;
  color: #fff;
}

.content-maintenance-state small {
  color: #f2b5ca;
  font-weight: 800;
}

.content-maintenance-state h2,
.content-maintenance-state p {
  margin: 0;
}

.content-maintenance-state p {
  color: #ded8d5;
}

.notice-manager-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.notice-manager-row > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.notice-manager-row span,
.notice-manager-row small,
.notice-manager-row time {
  color: var(--sub);
}

.gallery-empty-state,
.empty-content-state,
.empty-information {
  margin: 0;
  padding: 24px;
  color: var(--sub);
  text-align: center;
}

.photo-manager-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 14px;
}

.photo-manager-panel > .admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.photo-manager-panel > .admin-panel-heading .primary-action {
  flex: 0 0 auto;
}

.photo-edit-panel {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.photo-edit-panel[hidden] {
  display: none;
}

.photo-edit-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.photo-edit-heading h4,
.photo-edit-heading p {
  margin: 0;
}

.photo-edit-heading p {
  color: var(--sub);
  font-size: 13px;
}

.gallery-display-settings {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(150px, 0.8fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.gallery-display-settings h4,
.gallery-display-settings p {
  margin: 0;
}

.gallery-display-settings p {
  color: var(--sub);
  font-size: 12px;
}

.gallery-display-settings label {
  display: grid;
  gap: 5px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.gallery-display-settings select {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.gallery-display-settings .admin-form-message {
  grid-column: 1 / -1;
}

.photo-manager-form label,
.photo-upload-field {
  display: grid;
  gap: 5px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.photo-upload-field small {
  color: var(--sub);
  font-weight: 700;
  line-height: 1.5;
}

.photo-manager-form input[type="text"],
.photo-manager-form input[type="file"],
.photo-manager-form select,
.photo-manager-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.photo-manager-form textarea {
  resize: vertical;
}

.photo-preview {
  grid-row: span 3;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  background: var(--mist);
  color: var(--sub);
}

.photo-preview.is-cropping {
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
  place-items: stretch;
}

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

.photo-crop-control {
  display: grid;
  width: 100%;
  gap: 10px;
  padding: 10px;
}

.photo-crop-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

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

.photo-crop-sliders {
  display: grid;
  gap: 8px;
}

.photo-crop-sliders label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
}

.photo-crop-sliders input[type="range"] {
  width: 100%;
  accent-color: var(--coral);
}

.photo-crop-control small {
  color: var(--sub);
  line-height: 1.6;
}

.photo-featured-choice {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px !important;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.4;
}

.photo-featured-choice input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px !important;
  height: 20px !important;
  margin: 0;
  accent-color: var(--coral);
}

.photo-manager-list-heading {
  margin-top: 24px;
}

.photo-manager-list-heading h4,
.photo-manager-list-heading p {
  margin: 0;
}

.photo-manager-list-heading p {
  color: var(--sub);
  font-size: 13px;
}

.photo-manager-list {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.photo-manager-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.photo-manager-row.is-promotion {
  grid-template-columns: 120px minmax(0, 1fr);
  margin-top: 10px;
  padding: 14px;
  border: 1px solid;
  border-radius: 6px;
}

.photo-manager-row.is-campaign {
  border-color: #e6a5bf;
  background: #fff4f8;
  box-shadow: inset 5px 0 0 #c63870;
}

.photo-manager-row.is-campaign.is-upcoming {
  border-color: #dfbd7b;
  background: #fff9ea;
  box-shadow: inset 5px 0 0 #a86b16;
}

.photo-manager-row.is-campaign.is-ended {
  border-color: #d5d0ca;
  background: #f7f5f3;
  box-shadow: inset 5px 0 0 #8a8179;
}

.photo-manager-row.is-new {
  border-color: #8ccccc;
  background: #f0fbfb;
  box-shadow: inset 5px 0 0 #178c91;
}

.photo-manager-row > img {
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-manager-row > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.photo-manager-row small,
.photo-manager-row span {
  color: var(--sub);
}

.photo-manager-promotion-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 10px;
  margin-bottom: 4px;
}

.photo-manager-promotion-status strong {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 2px 9px;
  border-radius: 4px;
  background: #c63870;
  color: #fff;
  font-size: 12px;
}

.photo-manager-row.is-new .photo-manager-promotion-status strong {
  background: #178c91;
}

.photo-manager-row.is-campaign.is-upcoming .photo-manager-promotion-status strong {
  background: #a86b16;
}

.photo-manager-row.is-campaign.is-ended .photo-manager-promotion-status strong {
  background: #716a64;
}

.photo-manager-promotion-status small {
  font-weight: 800;
}

.photo-manager-row.is-promotion .photo-manager-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.photo-manager-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.photo-manager-actions button {
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.photo-manager-actions button:disabled {
  cursor: default;
  opacity: 0.35;
}

.photo-manager-actions .is-danger {
  color: #a33932;
}

.photo-manager-actions .is-promotion-clear {
  border-color: #a94b70;
  background: #fff;
  color: #922b54;
}

.photo-manager-row.is-new .photo-manager-actions .is-promotion-clear {
  border-color: #378f92;
  color: #176f73;
}

.gallery-item img.is-managed-photo {
  transform: none;
}

.sales-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.sales-panel-heading h3,
.sales-panel-heading p {
  margin: 0;
}

.sales-panel-heading p {
  color: var(--sub);
  font-size: 13px;
}

.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 16px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.list-pagination button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.list-pagination button:disabled {
  cursor: default;
  opacity: 0.4;
}

.sales-period {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.sales-period label {
  display: grid;
  gap: 4px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.sales-period input {
  min-height: 40px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.sales-period-presets {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.sales-period-presets button {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--mist);
  color: var(--sage);
  cursor: pointer;
  font-weight: 800;
}

.sales-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.sales-summary div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.sales-summary span {
  color: var(--sub);
  font-size: 12px;
}

.sales-summary strong {
  font-size: 19px;
}

.sales-comparison-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.sales-comparison-actions span {
  margin-right: 3px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.sales-comparison-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.sales-comparison-actions button.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: #fff;
}

.sales-comparison {
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f3f1ee;
}

.sales-comparison > p {
  margin: 0;
  color: var(--sub);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.comparison-grid > div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.comparison-grid span,
.comparison-grid small {
  color: var(--sub);
}

.comparison-grid strong {
  font-size: 20px;
}

.sales-list {
  border-top: 1px solid var(--line);
}

.sales-row {
  display: grid;
  grid-template-columns: 110px 1fr 130px 110px;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.sales-row small {
  display: block;
  color: var(--sub);
}

#admin-customers {
  display: grid;
  gap: 12px;
}

.customer-ledger {
  overflow: clip;
  border: 1px solid rgba(90, 72, 77, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(61, 48, 52, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.customer-ledger[open] {
  border-color: rgba(173, 85, 115, 0.28);
  box-shadow: 0 14px 34px rgba(61, 48, 52, 0.1);
}

.customer-ledger summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
}

.customer-ledger summary:hover {
  background: #fff9fb;
}

.customer-ledger summary strong,
.customer-ledger summary small {
  display: block;
}

.customer-ledger summary small {
  color: var(--sub);
}

.customer-history {
  padding: 2px 18px 18px;
  border-top: 1px solid rgba(90, 72, 77, 0.1);
  background: linear-gradient(180deg, #fffafc 0, #fff 140px);
}

.customer-photo-gallery {
  display: grid;
  gap: 10px;
}

.customer-photo-gallery-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.customer-photo-gallery-heading h3,
.customer-photo-gallery-heading strong,
.customer-photo-gallery-heading span {
  margin: 0;
}

.customer-photo-gallery-heading h3,
.customer-photo-gallery-heading strong {
  color: var(--ink);
  font-size: 15px;
}

.customer-photo-gallery-heading span {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
}

.customer-ledger-photo-gallery {
  margin: 16px 0;
}

.customer-photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 142px);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.customer-photo-thumb {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
  min-width: 0;
  padding: 0 0 8px;
  overflow: hidden;
  border: 1px solid rgba(90, 72, 77, 0.13);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(61, 48, 52, 0.07);
  color: var(--ink);
  text-align: left;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.customer-photo-thumb:hover,
.customer-photo-thumb:focus-visible {
  border-color: rgba(173, 85, 115, 0.48);
  box-shadow: 0 9px 20px rgba(99, 55, 70, 0.14);
  transform: translateY(-2px);
}

.customer-photo-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.customer-photo-thumb span,
.customer-photo-thumb small {
  padding-inline: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-photo-thumb span {
  padding-top: 3px;
  font-size: 12px;
  font-weight: 800;
}

.customer-photo-thumb small {
  color: var(--sub);
  font-size: 10px;
}

.customer-history > .customer-profile-actions {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 10px;
  border-top: 0;
}

.customer-profile-actions > span {
  color: var(--sub);
  font-size: 12px;
}

.customer-profile-note {
  padding: 9px 11px;
  border-left: 3px solid var(--pink);
  background: #fff3f7;
}

.customer-profile-history {
  margin: 0 0 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #f8f7f5;
}

.customer-profile-history summary {
  cursor: pointer;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.customer-profile-history p {
  margin: 7px 0 0;
  padding-top: 7px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
}

.customer-history p {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 13px;
}

.customer-cancellation-history {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--pink);
  background: var(--rose);
}

.customer-cancellation-history > strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.customer-cancellation-history p:last-child {
  margin-bottom: 0;
}

.customer-history > div {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  font-size: 13px;
}

.customer-history > .customer-history-visit {
  margin-top: 8px;
  padding: 13px;
  border: 1px solid rgba(90, 72, 77, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.customer-history-visit.is-photo-target,
.customer-detail-visit.is-photo-target {
  border-color: rgba(173, 85, 115, 0.58);
  box-shadow: 0 0 0 4px rgba(173, 85, 115, 0.11), 0 12px 28px rgba(82, 49, 59, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.customer-history small {
  grid-column: 2 / -1;
  color: var(--sub);
}

.customer-visit-payment {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.customer-visit-payment .admin-mini-action {
  min-height: 30px;
  padding-inline: 8px;
  font-size: 11px;
}

.customer-treatment-record {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  margin-top: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f7f5f2;
}

.customer-treatment-record img {
  width: 150px;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  object-fit: cover;
}

.customer-treatment-record dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.customer-treatment-record dl div {
  display: grid;
  gap: 2px;
}

.customer-treatment-record dt {
  color: var(--coral);
}

.customer-treatment-record dd {
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
}

.treatment-record-section {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f7f5f2;
}

.treatment-record-heading {
  display: grid;
  gap: 2px;
}

.treatment-record-heading span {
  color: var(--sub);
  font-size: 12px;
}

.treatment-photo-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px 14px;
  align-items: start;
}

.treatment-photo-preview {
  grid-row: span 2;
  display: grid;
  width: 180px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
  background: #fff;
  color: var(--sub);
  font-size: 12px;
}

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

#remove-treatment-photo {
  justify-self: start;
}

.admin-panel-heading h3 {
  margin-bottom: 2px;
}

.admin-panel-heading p {
  margin: 0 0 16px;
  color: var(--sub);
  font-size: 13px;
}

.admin-schedule-toolbar {
  margin-top: 4px;
}

.special-open-panel {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.special-open-panel h4 {
  margin: 0 0 4px;
}

.special-open-panel p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.special-open-form {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 12px;
  min-width: 0;
}

.special-open-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.special-open-form input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.special-open-list {
  display: grid;
  gap: 8px;
}

.special-open-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.special-open-row strong,
.special-open-row span {
  display: block;
}

.special-open-row span {
  color: var(--sub);
  font-size: 12px;
}

.special-open-row button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--coral);
  font-weight: 800;
}

.admin-schedule-scroll {
  max-height: 460px;
  margin-bottom: 10px;
}

.admin-schedule-selection {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.schedule-block-form {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(220px, 1.5fr) auto;
  align-items: end;
  gap: 12px;
}

.schedule-block-form label {
  display: grid;
  gap: 5px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.unified-block-editor {
  margin: 14px 0 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.unified-block-editor h4,
.reservation-list-heading h4 {
  margin: 0 0 10px;
}

.reservation-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.reservation-list-heading h4 {
  margin-bottom: 6px;
}

.reservation-list-heading p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
}

.reservation-list-heading label {
  display: grid;
  min-width: 150px;
  gap: 5px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.reservation-list-heading select {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.schedule-block-form input,
.schedule-block-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.admin-form-message {
  min-height: 22px;
  margin: 10px 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.admin-form-message.is-success {
  color: var(--sage);
}

.schedule-block-list {
  border-top: 1px solid var(--line);
}

.schedule-block-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-block-row strong,
.schedule-block-row span {
  display: block;
}

.schedule-block-row span,
.empty-admin-state {
  color: var(--sub);
  font-size: 13px;
}

.block-delete {
  min-width: 56px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--coral);
  cursor: pointer;
  font-weight: 800;
}

.empty-admin-state {
  margin: 14px 0 0;
}

.reservation-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.reservation-row.is-cancelled {
  opacity: 0.72;
}

.reservation-row small {
  display: block;
  margin-top: 5px;
  color: var(--coral);
}

.reservation-row:last-child {
  border-bottom: 0;
}

.reservation-admin-actions {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 7px;
}

.admin-mini-action {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--sage);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.admin-mini-action.is-danger {
  color: var(--coral);
}

.admin-reservation-detail-dialog {
  max-width: 560px;
}

.admin-customer-detail-dialog {
  max-width: 820px;
  background: #fcfbf9;
}

.reservation-detail-summary,
.reservation-detail-customer,
.customer-detail-summary {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.reservation-detail-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(90, 72, 77, 0.12);
  border-radius: 10px;
  background: #fff9fb;
}

.reservation-detail-contact[hidden] {
  display: none;
}

.reservation-detail-contact > strong {
  color: var(--sub);
  font-size: 12px;
}

.reservation-detail-contact > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.reservation-detail-summary span,
.reservation-detail-customer span,
.reservation-detail-customer small,
.customer-detail-summary span {
  color: var(--sub);
  font-size: 13px;
}

.customer-detail-summary {
  padding: 18px 20px;
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(173, 85, 115, 0.13), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fff7fa 100%);
  box-shadow: inset 0 0 0 1px rgba(90, 72, 77, 0.11);
}

.customer-detail-summary strong {
  color: var(--ink);
  font-size: 22px;
}

.customer-detail-photo-gallery {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(90, 72, 77, 0.12);
  border-radius: 16px;
  background: #fff;
}

.customer-detail-photo-gallery[hidden] {
  display: none;
}

.reservation-detail-summary .status-pill {
  justify-self: start;
}

.customer-detail-profile {
  margin-top: 14px;
}

.customer-detail-profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.customer-detail-profile div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(90, 72, 77, 0.1);
  border-radius: 12px;
  background: #fff;
}

.customer-detail-profile div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.customer-detail-profile dt,
.customer-detail-profile dd {
  margin: 0;
}

.customer-detail-profile dt {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.customer-detail-profile dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.customer-lifecycle-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
}

.customer-lifecycle-metric {
  min-width: 0;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #fff 0%, #f8f5f3 100%);
}

.customer-lifecycle-metric span,
.customer-lifecycle-metric strong,
.customer-lifecycle-metric small {
  display: block;
}

.customer-lifecycle-metric span {
  color: var(--sub);
  font-size: 10px;
  font-weight: 800;
}

.customer-lifecycle-metric strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.customer-lifecycle-metric small {
  margin-top: 4px;
  color: var(--sub);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.customer-cycle-inline {
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
}

.customer-detail-section {
  margin-top: 18px;
}

.customer-detail-section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
}

.customer-detail-history {
  display: grid;
  gap: 12px;
}

.customer-detail-visit {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(90, 72, 77, 0.11);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(61, 48, 52, 0.05);
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.customer-detail-visit:first-child {
  border-top: 1px solid rgba(90, 72, 77, 0.11);
}

.customer-detail-visit > div {
  display: grid;
  gap: 4px;
}

.customer-detail-visit span,
.customer-detail-visit small {
  color: var(--sub);
}

.customer-detail-visit small {
  grid-column: 2 / -1;
}

.customer-detail-visit .customer-treatment-record {
  grid-column: 2 / -1;
  border: 0;
  border-radius: 12px;
  background: #f8f5f3;
}

.reservation-detail-list {
  display: grid;
  gap: 0;
  margin: 14px 0;
  border-top: 1px solid var(--line);
}

.reservation-detail-list div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.reservation-detail-list dt,
.reservation-detail-list dd {
  margin: 0;
}

.reservation-detail-list dt {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.reservation-detail-list dd {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.reservation-detail-actions {
  margin-top: 14px;
}

.schedule-block-detail-dialog {
  max-width: 520px;
}

.schedule-block-detail-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e8e3df;
  color: #5e5652;
}

.schedule-block-detail-summary span,
.schedule-block-detail-summary small {
  color: #5e5652;
  font-size: 13px;
}

.schedule-block-detail-form input,
.schedule-block-detail-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.schedule-block-detail-actions {
  margin-top: 6px;
}

.reservation-panel-heading {
  display: grid;
  gap: 4px;
}

.contact-status {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .line-booking-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .line-booking-panel > div:first-child {
    flex: 0 1 auto;
  }

  .line-connect-action {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    font-size: 15px;
  }
}

.status-pill {
  align-self: start;
  border-radius: 999px;
  background: var(--rose);
  color: var(--coral);
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 800;
}

.cancel-booking-summary,
.cancel-notification-info {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cancel-booking-summary {
  margin-bottom: 16px;
  background: var(--mist);
}

.cancel-booking-summary span,
.cancel-notification-info span {
  color: var(--sub);
  font-size: 13px;
}

.admin-cancel-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout-breakdown-section {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid #e6cbd4;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff9fb 0%, #faf9f7 100%);
  box-shadow: inset 0 3px 0 rgba(201, 103, 135, 0.16);
}

.checkout-breakdown-section > .treatment-record-heading strong,
.checkout-subheading > strong {
  color: #7f4055;
}

.checkout-reservation-items,
.checkout-only-item-list,
.checkout-custom-item-list {
  display: grid;
  gap: 7px;
}

.checkout-breakdown-row,
.checkout-only-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #e5dadc;
  border-radius: 8px;
  background: #fff;
}

.checkout-breakdown-row.is-reservation-menu {
  border-color: #dfbdc9;
  background: #fff7fa;
  box-shadow: inset 3px 0 0 var(--coral);
}

.checkout-menu-field {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.checkout-menu-field > span {
  color: #8c4d62;
  font-size: 11px;
  font-weight: 900;
}

.checkout-menu-field select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 7px 34px 7px 10px;
  border-color: #dfbdc9;
  background-color: #fff;
  font-weight: 800;
}

.checkout-breakdown-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.checkout-breakdown-copy strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.checkout-breakdown-copy small,
.checkout-line-math,
.checkout-subheading span {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
}

.checkout-line-math {
  white-space: nowrap;
}

.checkout-line-subtotal {
  min-width: 76px;
  text-align: right;
  white-space: nowrap;
  font-size: 14px;
}

.checkout-only-item-row.is-selected {
  border-color: #dfb5c4;
  background: #fff6f9;
  box-shadow: inset 3px 0 0 rgba(201, 103, 135, 0.72);
}

.checkout-only-item-row.is-selected .checkout-line-subtotal {
  color: #8c3f59;
}

.checkout-only-items,
.checkout-custom-items {
  display: grid;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.checkout-subheading > span {
  text-align: right;
}

.checkout-only-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  cursor: pointer;
}

.checkout-only-item-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--coral);
}

.checkout-only-item-label strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.checkout-only-quantity {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.checkout-only-quantity select {
  width: 64px;
  min-height: 38px;
  padding: 7px 24px 7px 9px;
  background-color: #fff;
}

.checkout-only-amount {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.checkout-only-amount input {
  width: 112px;
  min-height: 38px;
  padding: 7px 9px;
  border-color: #dfbdc9;
  background: #fff;
  text-align: right;
  font-weight: 800;
}

.checkout-only-amount input:disabled {
  border-color: var(--line);
  background: #f3f1ef;
  color: #aaa4a1;
}

.checkout-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px 36px;
  align-items: end;
  gap: 8px;
}

.checkout-custom-row label {
  min-width: 0;
}

.checkout-custom-amount-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
}

.checkout-custom-remove {
  display: grid;
  place-items: center;
  width: 36px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--coral);
  cursor: pointer;
  font-size: 18px;
}

.checkout-pre-discount-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid #e2bdca;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8e8ee 0%, #f3dce4 100%);
}

.checkout-pre-discount-total span {
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.checkout-pre-discount-total strong {
  white-space: nowrap;
  color: #7f354f;
  font-size: 20px;
}

.checkout-discount-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.discount-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.discount-list {
  display: grid;
  gap: 8px;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr 150px 36px;
  align-items: end;
  gap: 8px;
}

.discount-compensation-fields {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.discount-amount-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
}

.discount-remove {
  display: grid;
  place-items: center;
  width: 36px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--coral);
  cursor: pointer;
  font-size: 18px;
}

.checkout-total {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--rose);
}

.checkout-total > span {
  display: flex;
  justify-content: space-between;
  color: var(--sub);
  font-size: 13px;
}

.checkout-total > span strong {
  color: var(--coral);
}

.checkout-total input[readonly] {
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.checkout-compensation-fields {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f5f2;
}

.checkout-time-fields,
.checkout-sales-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-sales-split > div {
  display: grid;
  align-content: end;
  gap: 5px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.checkout-sales-split > div strong {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.admin-cancel-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.admin-cancel-form .checkout-only-item-label,
.admin-cancel-form .checkout-only-quantity,
.admin-cancel-form .checkout-only-amount {
  display: flex;
}

.admin-cancel-form select,
.admin-cancel-form input,
.admin-cancel-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.checkout-next-booking {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.checkout-next-booking input {
  width: 18px;
  height: 18px;
}

.manual-booking-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: min(90vh, 900px);
  overflow-y: auto;
}

.manual-customer-fields,
.manual-booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.manual-customer-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 10px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
}

.manual-customer-picker small {
  grid-column: 1 / -1;
  color: var(--sub);
  font-size: 12px;
}

.manual-course-fieldset {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.manual-course-fieldset legend {
  padding: 0 6px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.manual-course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.manual-course-list label {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.manual-course-list input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.manual-course-list span {
  display: grid;
  gap: 2px;
}

.manual-course-list small {
  color: var(--sub);
  font-weight: 500;
}

.manual-booking-summary {
  padding: 14px;
  border: 1px solid rgba(242, 181, 202, 0.7);
  border-radius: 6px;
  background: var(--rose);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}

.manual-booking-summary strong,
.manual-booking-summary span {
  display: block;
}

.manual-selected-datetime {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(242, 181, 202, 0.7);
  border-radius: 6px;
  background: var(--rose);
}

.manual-selected-datetime span {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.manual-selected-datetime strong {
  font-size: 17px;
}

.management-schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.management-schedule-legend span {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.management-schedule-legend .is-booked {
  background: #f8e7ed;
  color: #8f3e5b;
}

.management-schedule-legend .is-completed {
  background: #dedddb;
  color: #77716e;
}

.management-schedule-legend .is-blocked {
  background: #e8e3df;
  color: #5e5652;
}

.schedule-action-datetime {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  font-weight: 800;
  text-align: center;
}

.schedule-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-schedule-scroll .schedule-grid {
  grid-template-columns: 72px repeat(7, minmax(104px, 1fr));
  min-width: 800px;
}

.schedule-action-buttons button {
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 4px;
  text-align: left;
}

.schedule-action-buttons button span {
  font-size: 11px;
  font-weight: 600;
}

.cancel-notification-info {
  background: var(--rose);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 38px clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(242, 181, 202, 0.45);
  background: #302e2f;
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer small {
  color: #f2b5ca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-footer strong {
  font-size: 17px;
}

.site-footer p {
  margin: 0;
  color: #c8c3c1;
  font-size: 11px;
}

.site-footer a {
  color: #f2b5ca;
  font-size: 13px;
  font-weight: 800;
}

.instagram-link,
.gallery-instagram-link,
.footer-social-link {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  text-decoration: none;
}

.footer-social-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px !important;
}

.footer-social-mark {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  background: #fff;
  color: #302e2f;
  font-size: 12px;
  font-weight: 900;
}

.footer-social-mark.is-facebook {
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-social-mark.is-tiktok {
  background: #111;
  color: #fff;
}

.instagram-mark {
  --instagram-size: 18px;
  background:
    radial-gradient(circle at 74% 26%, #fff 0 5%, transparent 6%),
    radial-gradient(circle at 28% 95%, #ffdc80 0 18%, transparent 38%),
    radial-gradient(circle at 18% 12%, #833ab4 0 24%, transparent 46%),
    linear-gradient(135deg, #833ab4 0%, #c13584 42%, #e1306c 66%, #f77737 100%);
  border-radius: 5px;
  display: inline-block;
  flex: 0 0 auto;
  height: var(--instagram-size);
  position: relative;
  width: var(--instagram-size);
}

.instagram-mark::before,
.instagram-mark::after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.instagram-mark::before {
  border: 2px solid #fff;
  border-radius: 5px;
  height: 10px;
  width: 10px;
}

.instagram-mark::after {
  border: 2px solid #fff;
  border-radius: 999px;
  height: 3px;
  width: 3px;
}

.footer-meta {
  justify-items: end;
}

.public-site-footer {
  position: relative;
}

.footer-meta {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.owner-login-link {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  padding: 0;
}

.owner-login-link:hover,
.owner-login-link:focus-visible {
  color: #f4a7bd;
}

.owner-admin-heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.owner-session {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.owner-session span {
  color: #fff;
  font-size: 0.82rem;
}

.owner-preview-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.owner-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.owner-login-form label {
  color: #343238;
  display: grid;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 7px;
}

.owner-login-form input {
  background: #fff;
  border: 1px solid #cbc7c9;
  border-radius: 4px;
  font: inherit;
  padding: 12px 14px;
}

.owner-login-form input:focus {
  border-color: #d66b8c;
  box-shadow: 0 0 0 3px rgba(214, 107, 140, 0.16);
  outline: 0;
}

.owner-login-form .admin-form-message.is-error {
  color: #a32139;
}

[hidden] {
  display: none !important;
}

.public-site-footer::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 72px);
  width: 74px;
  height: 3px;
  background: #f2b5ca;
  content: "";
}

@media (max-width: 980px) {
  body {
    padding-top: 92px;
  }

  [id] {
    scroll-margin-top: 106px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 10px 12px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    display: none;
    width: min(270px, 68vw);
    padding: 26px 18px 18px;
    border: 1px solid rgba(201, 95, 128, 0.16);
    border-radius: 0 0 26px 26px;
    background: rgba(235, 232, 228, 0.98);
    box-shadow: 0 20px 40px rgba(45, 43, 43, 0.16);
    backdrop-filter: blur(18px);
    color: var(--ink);
    font-size: 16px;
    z-index: 90;
  }

  .top-nav::before {
    display: block;
    margin: 0 0 26px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
    white-space: pre;
    content: "Menu\Aメニュー";
  }

  .site-header.menu-open .top-nav {
    display: grid;
    gap: 0;
  }

  .top-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 8px 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(201, 95, 128, 0.24);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 800;
    text-align: left;
  }

  .top-nav a::after {
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    content: "›";
  }

  .top-nav a.nav-muted {
    border-color: rgba(201, 95, 128, 0.24);
    background: transparent;
    color: var(--ink);
  }

  .top-nav a[aria-current="page"] {
    margin-block: 4px;
    padding-inline: 12px 10px;
    border-bottom-color: rgba(201, 95, 128, 0.26);
    border-radius: 6px;
    background: rgba(246, 231, 236, 0.96);
    color: var(--coral);
  }

  .top-nav a[aria-current="page"]::after {
    color: var(--coral);
  }

  .top-nav a.nav-home {
    margin-top: 12px;
    border: 1px solid rgba(201, 95, 128, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.38);
    color: #8f405c;
  }

  .top-nav a.nav-home::after {
    color: #8f405c;
  }

  .line-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: auto;
    min-height: 38px;
    padding-inline: 14px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .line-consult-card {
    grid-template-columns: 1fr;
  }

  .line-qr-frame {
    min-height: 210px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .mobile-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: #fff;
  }

  body:not(.owner-entry-mode) #gallery,
  body:not(.owner-entry-mode) #information,
  body:not(.owner-entry-mode) #reviews,
  body:not(.owner-entry-mode) #access {
    display: none;
  }

  .booking-shell,
  .split-section,
  .access-section,
  .access-page-layout,
  .admin-grid,
  .staff-intro,
  .compact-information,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    display: none;
  }

  .booking-shell {
    gap: 0;
  }

  .step-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    border-bottom: 1px solid var(--line);
  }

  .step-tab {
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    line-height: 1.25;
  }

  .step-tab:last-child {
    border-right: 1px solid var(--line);
  }

  .step-tab.is-active {
    border-color: rgba(201, 103, 135, 0.34);
    background: var(--rose);
    color: #765563;
  }

  .schedule-grid {
    grid-template-columns: 48px var(--schedule-day-columns, minmax(68px, 1.55fr) minmax(68px, 1.55fr) repeat(5, minmax(22px, 0.38fr)));
    min-width: 0;
  }

  .schedule-date.is-compact-day strong,
  .schedule-date.is-compact-day span {
    font-size: 10px;
  }

  .schedule-slot.is-compact-day {
    font-size: 13px;
    color: #c4bfba;
  }

  .staff-choice,
  .review-list,
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid.featured-design-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .gallery-section {
    gap: 20px;
  }

  .gallery-heading {
    display: block;
  }

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

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

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .customer-panel-heading {
    display: grid;
    align-items: stretch;
  }

  .customer-search {
    width: 100%;
  }

  .gallery-display-settings,
  .photo-manager-form {
    grid-template-columns: 1fr;
  }

  .photo-manager-panel > .admin-panel-heading,
  .photo-edit-heading {
    display: grid;
  }

  .photo-manager-panel > .admin-panel-heading .primary-action,
  .photo-edit-heading .secondary-action {
    width: 100%;
  }

  .photo-edit-panel {
    padding: 14px;
  }

  .notice-manager-form {
    grid-template-columns: 1fr 1fr;
  }

  .special-open-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .special-open-form input,
  .special-open-form button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .special-open-row {
    grid-template-columns: 1fr;
  }

  .admin-schedule-scroll {
    overflow-x: hidden;
    max-width: 100%;
  }

  .admin-schedule-scroll .schedule-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: 46px var(--schedule-day-columns, minmax(68px, 1.55fr) minmax(68px, 1.55fr) repeat(5, minmax(22px, 0.38fr)));
  }

  .admin-schedule-scroll .management-schedule-slot {
    min-width: 0;
    padding-inline: 2px;
  }

  .admin-schedule-scroll .management-schedule-slot.is-compact-day strong {
    font-size: 12px;
  }

  .admin-schedule-scroll .management-schedule-slot.is-compact-day small {
    display: none;
  }

  .photo-preview {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.owner-entry-mode {
    padding-top: 0;
  }

  body.owner-entry-mode #admin.admin-preview {
    padding-top: 32px;
  }

  .section-pad {
    padding: 56px 14px;
  }

  .content-gallery-tabs {
    display: contents;
    margin: 0;
  }

  .gallery-utility-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    gap: 0;
    margin: -4px 0 20px;
  }

  .gallery-utility-tools::before {
    z-index: 0;
    grid-column: 1 / -1;
    grid-row: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    content: "";
    pointer-events: none;
  }

  .content-gallery-mobile-controls {
    display: contents;
  }

  .content-gallery-filter-toggle {
    position: relative;
    z-index: 1;
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    width: 100%;
    min-height: 42px;
    padding: 0 11px;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 999px 0 0 999px;
    background: transparent;
    color: #5f5a59;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
  }

  .content-gallery-filter-mark {
    display: grid;
    align-content: center;
    gap: 3px;
    width: 18px;
    height: 18px;
  }

  .content-gallery-filter-mark > span {
    position: relative;
    display: block;
    width: 16px;
    height: 1px;
    border-radius: 999px;
    background: #8f8582;
  }

  .content-gallery-filter-mark > span::after {
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    border: 1px solid #8f8582;
    border-radius: 50%;
    background: #fff;
    content: "";
  }

  .content-gallery-filter-mark > span:nth-child(1)::after,
  .content-gallery-filter-mark > span:nth-child(3)::after {
    left: 3px;
  }

  .content-gallery-filter-mark > span:nth-child(2)::after {
    right: 3px;
  }

  .content-gallery-filter-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .content-gallery-filter-state small {
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--rose);
    color: var(--coral);
    font-size: 10px;
    font-weight: 900;
  }

  .content-gallery-filter-toggle i {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--sub);
    border-bottom: 2px solid var(--sub);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .content-gallery-filter-toggle[aria-expanded="true"] i {
    transform: translateY(2px) rotate(225deg);
  }

  .content-gallery-filter-toggle[aria-expanded="true"] {
    background: rgba(246, 231, 236, 0.78);
    color: #744457;
  }

  .content-gallery-selected-filters {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 6px;
  }

  .content-gallery-selected-filters button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(201, 95, 128, 0.4);
    border-radius: 999px;
    background: var(--rose);
    color: var(--ink);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .content-gallery-selected-filters button span {
    color: var(--coral);
    font-size: 16px;
    line-height: 1;
  }

  .content-gallery-filter-panel {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 13px;
    padding: 4px 0 14px;
    border-bottom: 1px solid var(--line);
  }

  .content-gallery-filter-panel.is-open {
    display: grid;
  }

  .content-gallery-filter-group {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .content-gallery-filter-group > span {
    font-size: 11px;
    line-height: 1.4;
  }

  .content-gallery-filter-group > div {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    overflow: visible;
  }

  .content-gallery-filter-group button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .content-gallery-filter-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
    padding-top: 2px;
  }

  .content-gallery-filter-actions button {
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .content-gallery-filter-reset {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--sub);
  }

  .content-gallery-filter-actions .content-gallery-filter-apply {
    border: 1px solid rgba(201, 103, 135, 0.34);
    border-radius: 999px;
    background: var(--rose);
    color: #785261;
  }

  .gallery-instagram-row {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .gallery-instagram-link {
    position: relative;
    z-index: 1;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    gap: 6px;
    padding: 0 10px;
    border: 0;
    border-radius: 0 999px 999px 0;
    background: transparent;
    color: #5f5a59;
    font-size: 11px;
    font-weight: 700;
  }

  .gallery-instagram-link .instagram-mark {
    --instagram-size: 17px;
  }

  .admin-preview {
    overflow-x: hidden;
  }

  .admin-preview .section-heading {
    margin-bottom: 22px;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .admin-tab {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    white-space: normal;
    font-size: 13px;
    line-height: 1.25;
  }

  .admin-panel {
    overflow: hidden;
    padding-inline: 12px;
  }

  .admin-schedule-scroll {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    overflow-x: hidden;
  }

  .admin-schedule-scroll .schedule-grid {
    width: 100%;
    min-width: 0 !important;
    grid-template-columns: 42px var(--schedule-day-columns, minmax(68px, 1.55fr) minmax(68px, 1.55fr) repeat(5, minmax(22px, 0.38fr))) !important;
  }

  .admin-schedule-scroll .schedule-corner,
  .admin-schedule-scroll .schedule-time {
    padding-inline: 2px;
    font-size: 10px;
  }

  .admin-schedule-scroll .schedule-date {
    padding-inline: 2px;
  }

  .admin-schedule-scroll .schedule-date strong {
    font-size: 14px;
  }

  .admin-schedule-scroll .schedule-date span {
    font-size: 11px;
  }

  .admin-schedule-scroll .schedule-date.is-compact-day strong,
  .admin-schedule-scroll .schedule-date.is-compact-day span {
    font-size: 9px;
  }

  .admin-schedule-scroll .management-schedule-slot {
    min-width: 0;
    min-height: 54px;
    padding: 2px;
    font-size: 10px;
  }

  .admin-schedule-scroll .management-schedule-slot strong {
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.15;
  }

  .admin-schedule-scroll .management-schedule-slot small {
    overflow-wrap: anywhere;
    font-size: 9px;
    line-height: 1.15;
  }

  .admin-schedule-scroll .management-schedule-slot.is-open strong {
    font-size: 20px;
  }

  .admin-schedule-scroll .management-schedule-slot.is-compact-day strong {
    font-size: 10px;
  }

  .customer-edit-form {
    grid-template-columns: 1fr;
  }

  .customer-history > .customer-profile-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-merge-comparison {
    grid-template-columns: 1fr;
  }

  .customer-duplicate-list button {
    align-items: flex-start;
    gap: 10px;
  }

  .manual-customer-fields,
  .manual-booking-fields,
  .manual-course-list,
  .manual-customer-picker {
    grid-template-columns: 1fr;
  }

  .manual-customer-picker small {
    grid-column: auto;
  }

  .schedule-action-buttons {
    grid-template-columns: 1fr;
  }

  .reservation-panel-heading {
    display: grid;
  }

  .reservation-list-heading {
    display: grid;
    align-items: stretch;
  }

  .reservation-list-heading label {
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .admin-digest,
  .digest-forecast-lines {
    grid-template-columns: 1fr;
  }

  .maintenance-feature-list {
    grid-template-columns: 1fr;
  }

  .maintenance-save-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: clamp(350px, 44svh, 390px);
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .hero-copy {
    padding-left: 16px;
  }

  .review-highlight {
    padding: 16px 14px 0;
  }

  .review-highlight-card {
    gap: 9px;
    min-height: 56px;
    padding: 7px 10px;
  }

  .review-highlight-rating {
    gap: 2px;
  }

  .review-highlight-stars {
    font-size: 9px;
  }

  .review-highlight-score {
    font-size: 20px;
  }

  .review-highlight-rating small {
    font-size: 10.5px;
  }

  .review-highlight-copy > span {
    color: #514c4a;
    font-size: 12px;
    font-weight: 500;
  }

  .review-highlight-copy small {
    color: #696260;
    font-size: 10.5px;
  }

  .review-highlight-arrow {
    font-size: 18px;
  }

  .salon-strengths {
    padding: 12px 14px 0;
  }

  .salon-strengths-list li {
    flex-direction: column;
    gap: 4px;
    min-height: 106px;
    padding: 10px 5px;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
  }

  .salon-strengths-list svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .salon-strength-copy {
    gap: 3px;
    grid-template-rows: 17px 32px;
    align-items: start;
    text-align: center;
  }

  .salon-strength-copy strong {
    color: #514c4a;
    font-size: 12px;
    font-weight: 600;
  }

  .salon-strength-copy small {
    display: -webkit-box;
    min-height: 32px;
    overflow: hidden;
    color: #696260;
    font-size: 10.5px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .weekly-availability {
    padding: 26px 14px 24px;
  }

  .popular-designs {
    padding: 24px 0 24px;
  }

  .popular-designs-heading,
  .popular-designs-footer {
    padding-inline: 14px;
  }

  .popular-designs-heading {
    margin-bottom: 14px;
  }

  .popular-designs-heading h2 {
    font-size: 24px;
  }

  .popular-designs-track {
    grid-auto-columns: calc((100% - 8px) / 2.14);
    gap: 8px;
    padding: 0 14px 5px;
    scroll-padding-inline: 14px;
    scrollbar-width: none;
  }

  .popular-design-card {
    gap: 6px;
  }

  .popular-design-more {
    gap: 6px;
  }

  .popular-design-more-visual strong {
    font-size: 16px;
  }

  .popular-design-caption {
    font-size: 10px;
  }

  .popular-designs-track::-webkit-scrollbar {
    display: none;
  }

  .popular-designs-footer {
    padding-top: 10px;
  }

  .popular-designs-link {
    font-size: 13px;
  }

  .promotion-spotlight {
    padding: 24px 14px;
  }

  .promotion-spotlight-heading {
    margin-bottom: 12px;
  }

  .promotion-spotlight-heading h2 {
    font-size: 23px;
  }

  .promotion-spotlight-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .promotion-spotlight-image {
    min-height: 150px;
  }

  .promotion-spotlight-copy {
    gap: 5px;
    padding: 14px 13px;
  }

  .promotion-spotlight-copy strong {
    font-size: 17px;
  }

  .promotion-spotlight-description {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .promotion-spotlight-meta {
    display: grid;
    gap: 1px;
    font-size: 10px;
  }

  .promotion-spotlight-more {
    font-size: 11px;
  }

  .weekly-availability-heading {
    display: block;
    margin-bottom: 14px;
  }

  .weekly-availability-heading .eyebrow {
    margin-bottom: 5px;
  }

  .weekly-availability-heading h2 {
    font-size: 24px;
  }

  .weekly-availability-last-booking {
    margin-top: 4px;
    font-size: 12px;
  }

  .weekly-availability-last-booking strong {
    font-size: 15px;
  }

  .weekly-availability-period {
    min-width: 0;
  }

  .weekly-availability-navigation {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 7px;
    width: 100%;
    margin-top: 13px;
  }

  .weekly-availability-navigation button {
    width: 38px;
    height: 38px;
  }

  .weekly-availability-row {
    grid-template-columns: 94px minmax(0, 1fr);
    min-height: 64px;
    gap: 8px;
  }

  .weekly-availability-row.is-today-available {
    grid-template-columns: 90px minmax(0, 1fr);
    padding-left: 13px;
  }

  .weekly-availability-date {
    display: grid;
    gap: 0;
  }

  .weekly-availability-date strong {
    font-size: 17px;
    line-height: 1.25;
  }

  .weekly-availability-date span {
    font-size: 11px;
  }

  .weekly-availability-date .weekly-availability-today-badge {
    gap: 5px;
    margin-top: 4px;
    font-size: 10px;
  }

  .weekly-availability-times {
    align-items: baseline;
  }

  .weekly-availability-times > span {
    font-size: 13px;
  }

  .weekly-availability-separator {
    margin: 0 7px;
    font-size: 11px;
  }

  .weekly-availability-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
  }

  .weekly-availability-action {
    width: 100%;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:nth-child(n + 2) {
    display: none;
  }

  .quick-info,
  .staff-choice,
  .blog-list {
    grid-template-columns: 1fr;
  }

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

  .compact-reviews .review-card {
    padding: 10px;
  }

  .compact-reviews .stars {
    font-size: 11px;
    line-height: 1.2;
  }

  .compact-reviews .review-card strong {
    display: block;
    font-size: 12px;
    line-height: 1.35;
  }

  .compact-reviews .review-card p {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    color: var(--sub);
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-main,
  .booking-summary {
    border-radius: 8px;
  }

  .booking-shell {
    gap: 0;
  }

  .booking-summary {
    display: none;
  }

  .booking-step {
    padding: 18px 14px;
  }

  .booking-step.is-active {
    display: flex;
    flex-direction: column;
  }

  .booking-step .step-intro p {
    display: none;
  }

  .booking-step[data-panel="time"] .step-intro p {
    display: block;
    font-size: 12px;
    line-height: 1.55;
  }

  .booking-step[data-panel="time"] .step-intro p small {
    color: var(--sub);
    font-size: 10px;
    font-weight: 700;
  }

  .booking-step .step-footer {
    order: 4;
  }

  .booking-step .filter-row,
  .booking-step .menu-list,
  .booking-step .option-block,
  .booking-step .schedule-toolbar,
  .booking-step .schedule-legend,
  .booking-step .schedule-scroll,
  .booking-step .schedule-selection,
  .booking-step .line-booking-panel,
  .booking-step .customer-easy-entry-panel,
  .booking-step .customer-form {
    order: 3;
  }

  .booking-step[data-panel="menu"] .filter-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
    overflow: visible;
  }

  .booking-step[data-panel="menu"] .filter-row button {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .booking-step[data-panel="menu"] .menu-list {
    overflow: visible;
  }

  .menu-list,
  .option-grid {
    gap: 10px;
  }

  .course-card,
  .option-card,
  .off-card {
    padding: 13px;
  }

  .step-footer {
    align-items: stretch;
    flex-direction: column-reverse;
    margin: 18px -14px -18px;
    padding: 14px;
    position: static;
    bottom: auto;
    z-index: 30;
    box-shadow: 0 -10px 24px rgba(37, 33, 31, 0.08);
  }

  .step-next {
    align-items: stretch;
    width: 100%;
  }

  .step-next .primary-action,
  .step-footer .ghost-action {
    width: 100%;
  }

  .schedule-scroll {
    max-height: min(62svh, 560px);
    margin-inline: -10px;
    overflow-x: hidden;
  }

  .schedule-grid {
    width: 100%;
    grid-template-columns: 36px var(--schedule-day-columns, minmax(68px, 1.55fr) minmax(68px, 1.55fr) repeat(5, minmax(22px, 0.38fr)));
    min-width: 0;
  }

  .schedule-corner,
  .schedule-date,
  .schedule-time,
  .schedule-slot {
    min-height: 46px;
  }

  .schedule-corner {
    font-size: 9px;
  }

  .schedule-date strong {
    font-size: 12px;
  }

  .schedule-date span {
    font-size: 9px;
  }

  .schedule-date small {
    display: none;
  }

  .schedule-time {
    font-size: 10px;
    padding: 0 2px;
  }

  .schedule-slot {
    font-size: 18px;
  }

  .gallery-grid.featured-design-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-directory {
    gap: 8px;
    padding-inline: 14px;
  }

  .mobile-directory-card {
    min-height: 66px;
    padding: 10px;
  }

  .mobile-directory-card strong {
    font-size: 17px;
  }

  .mobile-directory-card small {
    display: none;
  }

  .gallery-stage {
    margin-inline: 0;
  }

  .gallery-arrow {
    width: 34px;
    height: 46px;
    font-size: 27px;
  }

  #gallery-previous {
    left: -12px;
  }

  #gallery-next {
    right: -12px;
  }

  .staff-intro {
    gap: 18px;
  }

  .staff-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  .staff-card.has-photo {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .staff-card-photo {
    width: 82px;
    height: 96px;
  }

  .photo-manager-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .photo-manager-row.is-promotion {
    padding: 12px;
  }

  .photo-manager-row > img {
    width: 90px;
  }

  .photo-manager-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .photo-manager-actions .is-promotion-clear,
  .photo-manager-actions .is-danger {
    flex: 1 1 155px;
  }

  .notice-manager-form {
    grid-template-columns: 1fr;
    padding: 12px;
    overflow: hidden;
  }

  .notice-manager-form label,
  .notice-title-field,
  .notice-body-field,
  .notice-ai-panel,
  .notice-seo-panel,
  .notice-manager-form input,
  .notice-manager-form input[type="date"],
  .notice-manager-form select,
  .notice-manager-form textarea,
  .notice-rich-editor {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .notice-ai-panel,
  .notice-seo-grid {
    grid-template-columns: 1fr;
  }

  .notice-ai-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-manager-form input[type="date"] {
    display: block;
    appearance: none;
    -webkit-appearance: none;
  }

  .notice-manager-form .photo-featured-choice {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .notice-manager-form .photo-featured-choice input[type="checkbox"] {
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
  }

  .notice-editor-toolbar {
    gap: 5px;
    padding: 7px;
  }

  .notice-editor-toolbar button {
    min-width: 34px;
    height: 34px;
    padding-inline: 8px;
  }

  .notice-toolbar-group {
    flex-wrap: wrap;
    padding-left: 0;
    border-left: 0;
  }

  .notice-manager-row {
    grid-template-columns: 1fr;
  }

  .compact-information {
    gap: 20px;
  }

  .compact-information .blog-card {
    grid-template-columns: auto minmax(0, 1fr) 22px;
    gap: 7px 10px;
    padding-block: 12px;
  }

  .compact-information .blog-card span {
    justify-self: start;
  }

  .compact-information .blog-card strong {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .compact-information .blog-card b {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .content-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: -20px;
  }

  .content-page {
    padding-top: 48px;
  }

  .staff-profile-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px;
  }

  .staff-profile-photo {
    width: 96px;
  }

  .staff-profile-copy h2 {
    font-size: 23px;
  }

  .staff-profile-biography {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .content-blog-card summary,
  .content-blog-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .blog-thumbnail,
  .blog-date-thumbnail {
    width: 100%;
    max-width: none;
  }

  .content-blog-detail-heading h1 {
    font-size: 30px;
  }

  .content-blog-detail-body {
    font-size: 16px;
  }

  .content-blog-detail-actions {
    align-items: stretch;
  }

  .content-blog-detail-actions a {
    justify-content: center;
    width: 100%;
  }

  .faq-item summary {
    padding: 16px 42px 16px 16px;
    font-size: 15px;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-item p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-cta {
    padding: 18px;
  }

  .faq-cta h2 {
    font-size: 21px;
  }

  .content-review-card {
    padding: 17px;
  }

  .content-blog-list {
    gap: 12px;
  }

  .content-blog-card summary {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .blog-thumbnail,
  .blog-date-thumbnail {
    width: 112px;
  }

  .blog-date-thumbnail strong {
    font-size: 23px;
  }

  .blog-list-copy strong {
    font-size: 15px;
    line-height: 1.45;
  }

  .blog-list-copy > span {
    font-size: 11px;
  }

  .blog-expanded-body {
    padding: 0 16px 16px;
  }

  .gallery-detail-dialog {
    width: 100%;
    max-height: 100svh;
    border-radius: 0;
  }

  .split-section .section-more {
    justify-content: center;
  }

  .schedule-toolbar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .schedule-toolbar strong {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 28px;
    line-height: 1.4;
    padding-top: 2px;
    overflow: visible;
  }

  .week-action {
    grid-row: 2;
  }

  .menu-option {
    grid-template-columns: 1fr;
  }

  .addon-card,
  .off-option {
    grid-template-columns: 1fr;
  }

  .qty-control {
    width: max-content;
  }

  .addon-total,
  .menu-meta {
    justify-items: start;
  }

  .step-footer {
    display: grid;
    position: static;
    bottom: auto;
    background: rgba(251, 250, 248, 0.97);
    backdrop-filter: blur(14px);
  }

  .mobile-step-action:not([hidden]) {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(251, 250, 248, 0.98);
    box-shadow: 0 -14px 34px rgba(37, 33, 31, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-step-action > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }

  .mobile-step-action strong {
    flex: 0 0 auto;
  }

  .mobile-step-action span {
    min-width: 0;
    color: var(--sub);
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-step-action .primary-action {
    width: 100%;
  }

  body.modal-open .mobile-step-action {
    display: none !important;
  }

  .step-next {
    width: 100%;
    justify-items: stretch;
  }

  .selection-notice {
    text-align: left;
  }

  .confirmation-dialog {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 18px;
  }

  #checkout-form,
  #checkout-form > label {
    min-width: 0;
    max-width: 100%;
  }

  #checkout-form > label {
    overflow: hidden;
  }

  #checkout-form input[type="date"] {
    display: block;
    width: 100%;
    inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
    max-inline-size: 100%;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
  }

  #checkout-form input[type="date"]::-webkit-date-and-time-value {
    min-width: 0;
    text-align: center;
  }

  .confirmation-dialog > .eyebrow {
    order: 1;
  }

  .confirmation-dialog > h2 {
    order: 2;
  }

  #confirmation-modal .confirmation-actions {
    order: 3;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    margin: 0 0 16px;
  }

  #confirmation-modal .confirmation-actions .primary-action,
  #confirmation-modal .confirmation-actions .ghost-action {
    width: 100%;
  }

  #confirmation-modal .confirmation-list {
    order: 4;
  }

  #confirmation-modal .confirmation-note {
    order: 5;
    margin-bottom: 0;
  }

  .confirmation-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .confirmation-actions {
    display: grid;
  }

  .discount-row {
    grid-template-columns: 1fr 36px;
  }

  .checkout-breakdown-row,
  .checkout-only-item-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
  }

  .checkout-breakdown-row .checkout-line-math,
  .checkout-only-item-row .checkout-only-quantity,
  .checkout-only-item-row .checkout-only-amount {
    grid-column: 1;
  }

  .checkout-breakdown-row .checkout-line-subtotal,
  .checkout-only-item-row .checkout-line-subtotal {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .checkout-breakdown-row.is-reservation-menu .checkout-menu-field {
    grid-column: 1 / -1;
  }

  .checkout-breakdown-row.is-reservation-menu .checkout-line-math {
    grid-column: 1;
    grid-row: 2;
  }

  .checkout-breakdown-row.is-reservation-menu .checkout-line-subtotal {
    grid-column: 2;
    grid-row: 2;
  }

  .checkout-subheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .checkout-subheading > span {
    text-align: left;
  }

  .checkout-custom-row {
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .checkout-custom-row label:first-child {
    grid-column: 1 / -1;
  }

  .discount-row label:first-child {
    grid-column: 1 / -1;
  }

  .discount-compensation-fields,
  .checkout-time-fields,
  .checkout-sales-split {
    grid-template-columns: 1fr;
  }

  .reservation-row {
    grid-template-columns: 1fr;
  }

  .reservation-admin-actions {
    justify-items: start;
  }

  .reservation-detail-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-detail-contact > span {
    justify-content: flex-start;
  }

  .schedule-block-form {
    grid-template-columns: 1fr;
  }

  .block-reason-field {
    grid-column: auto;
  }

  .sales-summary {
    grid-template-columns: 1fr;
  }

  .sales-period {
    align-items: stretch;
  }

  .sales-period label {
    width: calc(50% - 15px);
  }

  .sales-period-presets {
    width: 100%;
    margin-left: 0;
  }

  .sales-row,
  .customer-history > div,
  .customer-detail-profile div,
  .customer-detail-visit {
    grid-template-columns: 1fr;
  }

  .customer-detail-profile dl {
    grid-template-columns: 1fr;
  }

  .customer-detail-profile div:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .customer-photo-strip {
    grid-auto-columns: minmax(104px, 42vw);
  }

  .customer-photo-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .customer-lifecycle-summary {
    grid-template-columns: 1fr;
  }

  .customer-history small,
  .customer-detail-visit small,
  .customer-detail-visit .customer-treatment-record {
    grid-column: auto;
  }

  .customer-visit-payment {
    justify-items: start;
  }

  .customer-treatment-record {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .customer-treatment-record img {
    width: min(100%, 280px);
  }

  .treatment-photo-field {
    grid-template-columns: 1fr;
  }

  .treatment-photo-preview {
    grid-row: auto;
    width: min(100%, 280px);
  }

  .sales-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
  }
}
