/* Tenant landing pages — modern, mobile-first salon / service style */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text, #2d1f24);
  background: var(--lp-bg, #fdf8f6);
}

.lp-container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 34, 82, 0.1);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
  padding: 0.75rem 0;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.lp-brand-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #fff;
  font-size: 0.85rem;
}

.lp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lp-brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-primary);
}

.lp-brand-text small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-accent);
}

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lp-primary);
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.lp-nav a {
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  color: var(--lp-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.lp-nav a:hover {
  background: rgba(139, 34, 82, 0.08);
  color: var(--lp-primary);
}

.lp-nav-admin {
  opacity: 0.6;
  font-size: 0.8rem !important;
}

.lp-lang select {
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(139, 34, 82, 0.2);
  border-radius: 6px;
  background: #fff;
  font-size: 0.8rem;
  color: var(--lp-text);
}

/* Hero */
.lp-hero {
  position: relative;
  min-height: clamp(420px, 70vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 165, 116, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 34, 82, 0.15), transparent),
    linear-gradient(160deg, var(--lp-bg) 0%, #f5ebe6 50%, #efe0d8 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 680px;
}

.lp-hero-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-accent);
  border: 1px solid rgba(212, 165, 116, 0.5);
  border-radius: 999px;
}

.lp-hero h1 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--lp-primary);
  line-height: 1.1;
}

.lp-hero-message {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: rgba(45, 31, 36, 0.85);
}

.lp-hero-message p,
.lp-hero-message em {
  margin: 0.35rem 0;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 34, 82, 0.3);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(139, 34, 82, 0.35);
}

.lp-btn-ghost {
  border: 1.5px solid var(--lp-primary);
  color: var(--lp-primary);
  background: rgba(255, 255, 255, 0.6);
}

.lp-btn-ghost:hover {
  background: rgba(139, 34, 82, 0.06);
}

/* Sections */
.lp-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.lp-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.lp-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--lp-primary);
}

.lp-section-head h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--lp-accent), transparent);
}

.lp-price-subtitle {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--lp-secondary);
  text-align: center;
}

.lp-price-block + .lp-price-block {
  margin-top: 3rem;
}

.lp-price-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45, 31, 36, 0.06);
  background: #fff;
}

.lp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lp-price-table th,
.lp-price-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(139, 34, 82, 0.08);
}

.lp-price-table thead th {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-price-table tbody tr:last-child td {
  border-bottom: none;
}

.lp-price-table tbody tr:hover {
  background: rgba(139, 34, 82, 0.03);
}

.lp-col-price {
  text-align: right !important;
  white-space: nowrap;
  font-weight: 500;
  color: var(--lp-primary);
}

.lp-price-desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(45, 31, 36, 0.65);
  font-weight: 400;
}

/* Gallery */
.lp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
}

.lp-gallery-item {
  margin: 0;
}

.lp-gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  aspect-ratio: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-gallery-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(139, 34, 82, 0.15);
}

.lp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-gallery-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(45, 31, 36, 0.7);
}

/* Lightbox */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 10, 15, 0.92);
  padding: 1rem;
}

.lp-lightbox[hidden] {
  display: none;
}

.lp-lightbox-figure {
  margin: 0;
  max-width: min(900px, 95vw);
  max-height: 90vh;
}

.lp-lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lp-lightbox-figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.lp-lightbox-close,
.lp-lightbox-prev,
.lp-lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}

.lp-lightbox-close:hover,
.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lp-lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lp-lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lp-lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Contacts */
.lp-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.lp-contacts-info h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  color: var(--lp-primary);
}

.lp-contact-row {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.lp-contact-row a {
  color: var(--lp-primary);
  text-decoration: none;
}

.lp-contact-row a:hover {
  text-decoration: underline;
}

.lp-directions {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(139, 34, 82, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--lp-accent);
}

.lp-directions h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--lp-secondary);
}

.lp-directions p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.lp-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45, 31, 36, 0.1);
  min-height: 280px;
}

.lp-map iframe {
  display: block;
  width: 100%;
  height: min(400px, 60vw);
  border: 0;
}

/* Footer */
.lp-footer {
  padding: 2rem 1rem;
  text-align: center;
  background: var(--lp-secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.lp-footer p {
  margin: 0.25rem 0;
}

.lp-footer a {
  color: var(--lp-accent);
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .lp-nav-toggle {
    display: flex;
  }

  .lp-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    background: var(--lp-bg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    margin-left: 0;
  }

  .lp-nav.is-open {
    transform: translateX(0);
  }

  .lp-nav a {
    padding: 0.85rem 1rem;
    border-radius: 8px;
  }

  .lp-lang {
    margin-left: auto;
  }

  .lp-contacts-grid {
    grid-template-columns: 1fr;
  }

  .lp-price-table th,
  .lp-price-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  .lp-lightbox-prev {
    left: 0.5rem;
  }

  .lp-lightbox-next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .lp-price-table-3 {
    font-size: 0.82rem;
  }

  .lp-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
}
