/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--t); white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover {
  background: var(--text); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,169,138,0.22);
}
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-h); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.6875rem; min-height: 38px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.card__imgwrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  isolation: isolate;
}
.card__imgwrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card:hover .card__imgwrap img { transform: scale(1.05); }
.card__body { padding: var(--sp-3) var(--sp-3) var(--sp-4); }
.card__eyebrow {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.card__title {
  font-family: var(--f-head); font-size: 1.3rem; font-weight: 400;
  color: var(--text); margin-bottom: 8px; line-height: 1.2;
}
.card__text {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: var(--sp-2); display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-2); border-top: 1px solid var(--border);
}
.card__dur { font-size: 0.75rem; color: var(--text-muted); }
.card__price { font-family: var(--f-head); font-size: 1.15rem; color: var(--accent); }

.card--m .card__imgwrap { aspect-ratio: 3/4; }
.card--m .card__imgwrap .hover-bio {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.95) 80%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 16px;
  opacity: 0; transition: opacity 300ms ease;
}
.card--m:hover .hover-bio { opacity: 1; }
.hover-bio-text {
  font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6;
}
.card--m .card__name {
  font-family: var(--f-head); font-size: 1.45rem; color: var(--text);
  margin-bottom: 4px; line-height: 1.1;
}
.card--m .card__spec {
  font-size: 0.6875rem; color: var(--accent); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--sp-2);
}
.card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.625rem; letter-spacing: 0.08em; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 2px; padding: 3px 8px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: var(--sp-3); }
.step__num {
  font-family: var(--f-head); font-size: 5rem; font-weight: 300;
  color: rgba(201,169,138,0.07); line-height: 1;
  position: absolute; top: 0; left: -4px; z-index: 0; pointer-events: none;
}
.step__inner { position: relative; z-index: 1; padding-top: 36px; }
.step__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3); font-size: 1.1rem;
  background: var(--surface-2);
}
.step__title { font-family: var(--f-head); font-size: 1.25rem; margin-bottom: 8px; }
.step__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list-wrap {
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
}

.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden; transition: border-color var(--t);
}
.faq-item.open { border-color: var(--border-h); }
.faq-q {
  width: 100%; text-align: left;
  background: var(--surface); border: none; color: var(--text);
  padding: var(--sp-3) var(--sp-4); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  font-family: var(--f-body); font-size: 0.9375rem; font-weight: 500;
  min-height: 64px; transition: background var(--t);
}
.faq-q:hover { background: var(--surface-2); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--accent);
  transition: transform var(--t);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  background: var(--surface); overflow: hidden;
  max-height: 0; transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 360px; }
.faq-a-inner {
  padding: 0 var(--sp-4) var(--sp-4);
  color: var(--text-muted); font-size: 0.9375rem; line-height: 1.72;
  border-top: 1px solid var(--border); padding-top: var(--sp-3);
}

.faq-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--sp-8);
  padding-inline: max(var(--sp-4), env(safe-area-inset-left)) max(var(--sp-4), env(safe-area-inset-right));
}

.faq-page__actions .btn {
  min-width: min(100%, 280px);
  justify-content: center;
}

@media (min-width: 480px) {
  .faq-page__actions .btn { min-width: auto; }
}

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left; font-size: 0.6875rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--border);
}
.price-table th:last-child { text-align: right; }
.price-table td { padding: var(--sp-3); border-bottom: 1px solid rgba(201,169,138,0.06); vertical-align: middle; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr { transition: background var(--t); }
.price-table tbody tr:hover td { background: rgba(201,169,138,0.03); }
.p-name { font-family: var(--f-head); font-size: 1.15rem; color: var(--text); }
.p-desc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.p-dur  { font-size: 0.875rem; color: var(--text-muted); white-space: nowrap; }
.p-amt  { font-family: var(--f-head); font-size: 1.3rem; color: var(--accent); text-align: right; white-space: nowrap; }

/* ============================================================
   SCHEDULE GRID
   ============================================================ */
.schedule-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
.sched-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.sched-table th {
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding: var(--sp-2); text-align: center;
  border-bottom: 1px solid var(--border);
}
.sched-table th.today-col { color: var(--accent); }
.sched-table .time-cell {
  font-size: 0.75rem; color: var(--text-muted); padding: 8px 12px;
  text-align: right; white-space: nowrap; border-right: 1px solid var(--border);
  background: var(--bg-2); font-variant-numeric: tabular-nums;
}
.sched-table td.day-cell {
  padding: 4px; vertical-align: top; height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.slot-chip {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 6px 8px; margin-bottom: 3px;
  cursor: pointer; transition: all var(--t);
}
.slot-chip:hover { border-color: var(--accent); background: rgba(201,169,138,0.07); }
.slot-chip.booked {
  opacity: 0.35; cursor: not-allowed;
  border-color: transparent;
}
.slot-chip-name { font-size: 0.6875rem; font-weight: 500; color: var(--accent); }
.slot-chip-svc  { font-size: 0.6rem; color: var(--text-muted); margin-top: 2px; }
.filter-bar { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.filter-btn {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-muted);
  font-family: var(--f-body); font-size: 0.75rem; letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem; cursor: pointer; min-height: 40px;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent); color: var(--text); background: var(--surface-2);
}
.schedule-legend {
  display: flex; gap: var(--sp-4); flex-wrap: wrap;
  align-items: center; margin-bottom: var(--sp-4);
}
.schedule-legend__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em;
}
.schedule-legend__swatch {
  width: 12px; height: 12px; border-radius: 2px;
}
.schedule-legend__swatch--avail {
  background: var(--surface-2); border: 1px solid var(--accent);
}
.schedule-legend__swatch--booked {
  background: var(--surface); opacity: 0.4;
}
.sched-table__today-dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
  margin: 3px auto 0;
}
.sched-table td.day-cell--today { background: rgba(201,169,138,0.02); }
a.slot-chip {
  display: block; text-decoration: none; color: inherit;
}
.schedule-hint {
  font-size: 0.8125rem; color: var(--text-muted);
  margin-top: var(--sp-3); text-align: center;
}

/* ============================================================
   CONTACT / NAP
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.nap-block { display: flex; flex-direction: column; gap: var(--sp-4); }
.nap-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.nap-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: border-color var(--t), box-shadow var(--t);
}
.nap-item:hover .nap-icon {
  border-color: var(--border-h);
  box-shadow: 0 0 0 1px var(--glow);
}
.nap-icon__svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
}
.nap-icon__svg--lg {
  width: 28px;
  height: 28px;
}
.nap-label { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.nap-value { color: var(--text); margin-top: 0; font-size: 0.9375rem; line-height: 1.65; white-space: pre-line; }
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: var(--sp-4);
}
.map-placeholder__icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
}
.map-placeholder__icon .nap-icon__svg {
  width: 26px;
  height: 26px;
}
.map-placeholder__label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4);
  opacity: 0; pointer-events: none; transition: opacity 280ms ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); max-width: 680px; width: 100%;
  max-height: 90svh; overflow-y: auto;
  transform: translateY(20px); transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__hdr {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: var(--sp-4) var(--sp-4) 0;
}
.modal__close {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 50%; color: var(--text-muted); cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--t); font-size: 1.1rem;
}
.modal__close:hover { color: var(--text); border-color: var(--border-h); }
.modal__body { padding: var(--sp-4); }
.modal__img {
  width: 100%; height: 260px; object-fit: cover; object-position: top center;
  border-radius: var(--r-md); margin-bottom: var(--sp-4);
}
.modal__name { font-family: var(--f-head); font-size: 2rem; line-height: 1.1; margin-bottom: 6px; }
.modal__spec { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-4); }
.modal__bio  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.78; margin-bottom: var(--sp-4); }
.modal__services-title {
  font-family: var(--f-head); font-size: 1.3rem; margin-bottom: var(--sp-2);
}
.modal__svc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-4); }
.svc-chip {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 8px 14px;
  font-size: 0.8125rem; color: var(--text-muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4);
  opacity: 0; pointer-events: none; transition: opacity 280ms ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 92svh; object-fit: contain;
  border-radius: var(--r-sm);
  transform: scale(0.96); transition: transform 300ms cubic-bezier(0.4,0,0.2,1);
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: white; cursor: pointer;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--t); font-family: var(--f-body);
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   NETWORK SALONS
   ============================================================ */
.network-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-3);
}
@media (min-width: 640px) { .network-grid { grid-template-columns: repeat(2,1fr); } }
.network-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-4);
  transition: border-color var(--t), transform var(--t);
}
.network-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.network-card__badge {
  font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-2); display: block;
}
.network-card__name {
  font-family: var(--f-head); font-size: 1.25rem; color: var(--text);
  margin-bottom: 6px; line-height: 1.2;
}
.network-card__addr {
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--sp-3);
  white-space: pre-line; line-height: 1.6;
}
.network-card__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; color: var(--text-muted);
  padding: 7px 0; border-top: 1px solid var(--border);
}
