:root {
  --color-rose: #be5a6a;
  --color-rose-dark: #a84d5c;
  --color-gold: #b8956b;
  --font-main: 'Californian FB', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --header-height: 4rem;
}

@media (min-width: 768px) {
  :root {
    --header-height: 4.5rem;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.0625rem;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

.font-serif {
  font-family: var(--font-main);
}

::selection {
  background: #f4d8dd;
  color: #7c3242;
}

/* ---------- Buttons ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  color: white;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(190, 90, 106, 0.28);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(190, 90, 106, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: white;
  color: var(--color-rose);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--color-rose);
  border-radius: 9999px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.2s;
}

.btn-outline:hover {
  background: #fdf2f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(190, 90, 106, 0.18);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: linear-gradient(135deg, #4f9d72 0%, #3f8a60 100%);
  color: white;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(63, 138, 96, 0.28);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 138, 96, 0.4);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: rgba(255, 255, 255, 0.92);
  color: #44403c;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.2s;
}

.btn-hero-secondary:hover {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* ---------- Sections & typography ---------- */

.section {
  padding: 4.5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 2rem;
  }
}

.section-tight {
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-tight {
    padding: 3.5rem 2rem;
  }
}

/* Goal → treatment picker cards (tretmani lica) */
.goal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.125rem 1.125rem 1.125rem 1.375rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: linear-gradient(145deg, #ffffff 0%, #fdf8f9 100%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.goal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.875rem;
  bottom: 0.875rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #be5a6a 0%, #d4a5ad 100%);
}

.goal-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 8px 24px rgba(190, 90, 106, 0.08);
}

.goal-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.goal-card-num {
  flex-shrink: 0;
  font-family: var(--font-main);
  font-size: 1.25rem;
  line-height: 1;
  color: #be5a6a;
  opacity: 0.45;
  padding-top: 0.125rem;
}

.goal-card-wish {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #292524;
  line-height: 1.45;
}

.goal-card-rec {
  margin-left: 2rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fce7eb;
}

.goal-card-rec-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #be5a6a;
  margin-bottom: 0.25rem;
}

.goal-card-rec-name {
  font-size: 0.875rem;
  color: #44403c;
  line-height: 1.4;
}

.goal-card-btn {
  margin-left: 2rem;
  margin-top: 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 500;
  color: #be5a6a;
  border: 1px solid #f4d8dd;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  background: white;
  transition: background 0.2s, border-color 0.2s;
}

.goal-card-btn:hover {
  background: #fdf2f4;
  border-color: #be5a6a;
}

.combo-card {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: linear-gradient(145deg, #ffffff 0%, #fafaf9 100%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.combo-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 6px 20px rgba(190, 90, 106, 0.08);
}

.service-link-card {
  display: flex;
  flex-direction: column;
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: white;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-link-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 8px 24px rgba(190, 90, 106, 0.1);
  transform: translateY(-2px);
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: linear-gradient(145deg, #ffffff 0%, #fafaf9 100%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 6px 20px rgba(190, 90, 106, 0.08);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon--phone {
  background: #fdf2f4;
  color: #be5a6a;
}

.contact-card-icon--wa {
  background: #f0faf4;
  color: #3f8a60;
}

.contact-card-icon--map {
  background: #fdf2f4;
  color: #be5a6a;
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-title {
  font-family: var(--font-main);
  font-size: 1.125rem;
  color: #292524;
  margin-bottom: 0.25rem;
}

.contact-card-text {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.5;
}

.contact-hours {
  margin-top: 0.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: white;
}

/* ---------- Service single pages ---------- */

body[data-service] {
  font-size: 1.125rem;
}

.service-hero {
  min-height: 22rem;
}

@media (min-width: 768px) {
  .service-hero {
    min-height: 26rem;
  }
}

.service-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  line-height: 1.5;
}

@media (max-width: 639px) {
  .service-hero {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .service-hero .btn-primary,
  .service-hero .btn-whatsapp {
    width: 100%;
  }
}

.service-intro-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .service-intro-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .service-intro-grid {
    grid-template-columns: 1fr 20rem;
    gap: 3rem;
  }
}

.service-intro-text p {
  color: #44403c;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-intro-text p:last-child {
  margin-bottom: 0;
}

.service-quick-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: linear-gradient(145deg, #ffffff 0%, #fafaf9 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .service-quick-card {
    position: sticky;
    top: 6rem;
  }
}

.service-quick-card-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  color: #292524;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f5f5f4;
}

.service-quick-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-quick-card-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
}

.service-quick-card-row dt {
  color: #78716c;
  flex-shrink: 0;
}

.service-quick-card-row dd {
  color: #292524;
  font-weight: 500;
  text-align: right;
}

.service-audience-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .service-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.service-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  border-radius: 0.875rem;
  border: 1px solid #f5f5f4;
  background: white;
  font-size: 1rem;
  line-height: 1.5;
  color: #44403c;
}

.service-audience-item--muted {
  background: #fafaf9;
}

.service-benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-benefit-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: white;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-benefit-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 6px 20px rgba(190, 90, 106, 0.08);
}

.service-benefit-card h3 {
  font-family: var(--font-main);
  font-size: 1.0625rem;
  color: #292524;
  margin-bottom: 0.375rem;
}

.service-benefit-card p {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid #e7e5e4;
}

.service-step:last-child {
  border-bottom: none;
}

.service-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
  color: var(--color-rose);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-step-text {
  font-size: 1.0625rem;
  color: #44403c;
  line-height: 1.6;
  padding-top: 0.25rem;
}

.service-mid-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f4d8dd;
  background: linear-gradient(135deg, #fdf8f9 0%, #ffffff 100%);
}

@media (min-width: 768px) {
  .service-mid-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
  }
}

.service-related-link {
  display: inline-flex;
  padding: 0.625rem 1.125rem;
  border-radius: 9999px;
  border: 1px solid #f5f5f4;
  background: white;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #44403c;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.service-related-link:hover {
  border-color: #f4d8dd;
  color: var(--color-rose);
  box-shadow: 0 4px 12px rgba(190, 90, 106, 0.1);
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .service-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.service-gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-faq-item summary {
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .service-faq-item summary {
    font-size: 1.125rem;
  }
}

.service-faq-item .faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #57534e;
  margin-top: 0;
}

body[data-service] .btn-primary,
body[data-service] .btn-whatsapp {
  padding: 0.9375rem 1.75rem;
  font-size: 1rem;
}

body[data-service] .btn-primary svg,
body[data-service] .btn-whatsapp svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 640px) {
  .goal-card-rec,
  .goal-card-btn {
    margin-left: 0;
  }

  .goal-card-btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .faq-item summary {
    padding: 0.375rem 0;
    min-height: 3rem;
    align-items: flex-start;
  }

  .faq-item {
    padding: 1.75rem 0;
  }
}

.section-title {
  font-family: var(--font-main);
  font-size: 2.25rem;
  line-height: 1.15;
  color: #292524;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: #78716c;
  font-size: 1.0625rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Header & mobile menu ---------- */

#site-header {
  position: relative;
  z-index: 50;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 4rem;
}

@media (min-width: 768px) {
  .site-header-bar {
    height: 4.5rem;
  }
}

.site-header-logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 3.25rem);
}

.site-header-logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .site-header-logo-img {
    height: 3.25rem;
  }
}

.menu-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  background: #ffffff;
  color: #44403c;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
  background: #fafaf9;
  border-color: #d6d3d1;
}

.menu-toggle.is-active {
  background: #fdf2f4;
  border-color: #f4d8dd;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.125rem;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 25, 23, 0.42);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: min(88vw, 21rem);
  max-width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  overflow: hidden;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-top {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #f5f5f4;
}

.mobile-menu-logo {
  display: block;
  max-width: 9.5rem;
}

.mobile-menu-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.5rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #f5f5f4;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
}

.site-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body.menu-open .site-sticky-bar {
  z-index: 30;
}

body.menu-open .site-header {
  z-index: 70;
  background: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-backdrop,
  .mobile-menu-panel,
  .menu-toggle-bar {
    transition: none;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: none;
  }
}

@media (max-width: 380px) {
  .site-header-logo-img {
    height: 2.125rem;
  }

  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .service-hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ---------- Navigation ---------- */

.nav-link {
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link-active {
  color: var(--color-rose);
}

.nav-link:hover::after,
.nav-link-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  margin-bottom: 0.25rem;
  color: #44403c;
  font-weight: 500;
  font-size: 1.0625rem;
  border-radius: 0.75rem;
  transition: color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--color-rose);
  background: #fdf8f9;
}

.mobile-nav-link-active {
  color: var(--color-rose);
  background: #fdf2f4;
  font-weight: 600;
}

/* ---------- Cards ---------- */

.card-hover {
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-hover:hover {
  box-shadow: 0 20px 50px rgba(41, 37, 36, 0.1);
  transform: translateY(-5px);
}

/* ---------- Hero ---------- */

.hero-overlay {
  background: linear-gradient(135deg, rgba(41, 37, 36, 0.62) 0%, rgba(41, 37, 36, 0.35) 55%, rgba(41, 37, 36, 0.2) 100%);
}

.hero-img {
  animation: heroZoom 16s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition-property: opacity, transform;
  transition-duration: 0.55s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Fade-only reveal for backdrop-blur cards (GPU-friendly). */
.reveal-fade {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-fade.in-view {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-img {
    animation: none;
  }
}

/* ---------- Lightbox ---------- */

[data-gallery] img {
  cursor: zoom-in;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

[data-gallery] img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(41, 37, 36, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
  animation: lbFade 0.25s ease;
}

@keyframes lbFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.94);
  cursor: zoom-out;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
  padding: 0 1rem;
}

.lightbox-img {
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.lightbox-img.is-loading {
  opacity: 0;
}

.lightbox-caption {
  color: #d6d3d1;
  font-size: 0.9375rem;
  text-align: center;
}

.lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.06);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-topbar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.lightbox-counter {
  color: #e7e5e4;
  font-size: 0.9375rem;
  margin-right: 0.375rem;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-img {
    max-height: 75vh;
  }
}

/* ---------- Prose ---------- */

.prose-salon h2 {
  font-family: var(--font-main);
  font-size: 1.625rem;
  color: #292524;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.prose-salon p,
.prose-salon li {
  color: #57534e;
  line-height: 1.75;
}

.prose-salon ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid #e7e5e4;
  padding: 1.5rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #292524;
  list-style: none;
  transition: color 0.2s;
  line-height: 1.5;
  align-items: flex-start;
  gap: 1rem;
}

.faq-item summary:hover {
  color: var(--color-rose);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-rose);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg) scale(0.92);
  opacity: 0.75;
}

.faq-answer {
  padding-top: 1rem;
}

.faq-item[open] p,
.faq-item[open] .faq-answer {
  animation: faqOpen 0.35s ease;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Price tables ---------- */

.price-table {
  width: 100%;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e7e5e4;
}

.price-table tbody tr {
  transition: background 0.2s ease;
}

.price-table tbody tr:hover {
  background: #fdf8f9;
}

.price-table th {
  background: #fafaf9;
  font-weight: 600;
  color: #44403c;
}

/* Middle column (trajanje/zona) — fixed width, same in every table */
.price-table th:nth-child(2):not(:last-child),
.price-table td:nth-child(2):not(:last-child) {
  width: 10rem;
}

/* Last column (cijena) — fixed width, right-aligned */
.price-table th:last-child,
.price-table td:last-child {
  width: 9rem;
  text-align: right;
  white-space: nowrap;
}

.price-table .price-cell {
  font-weight: 600;
  color: #292524;
}

.price-link {
  color: #be5a6a;
  transition: color 0.2s;
}

.price-link:hover {
  color: #a84d5c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.price-category-title {
  font-family: var(--font-main);
  font-size: 1.75rem;
  line-height: 1.2;
  color: #292524;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.price-category-subtitle {
  font-family: var(--font-main);
  font-size: 1.25rem;
  color: #44403c;
  margin-bottom: 0.75rem;
}

.price-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 5.5rem;
}

.price-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.price-nav::-webkit-scrollbar {
  display: none;
}

.price-nav-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
  background: white;
  border: 1px solid #e7e5e4;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.price-nav-btn:hover {
  background: #fdf2f4;
  border-color: #f4d8dd;
  color: #be5a6a;
}

.price-popular-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  background: linear-gradient(145deg, #ffffff 0%, #fdf8f9 100%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-popular-card:hover {
  border-color: #f4d8dd;
  box-shadow: 0 6px 20px rgba(190, 90, 106, 0.08);
}

.price-popular-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #292524;
  line-height: 1.4;
}

.price-popular-price {
  font-family: var(--font-main);
  font-size: 1.125rem;
  color: #be5a6a;
  font-weight: 600;
}

.price-popular-btn {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3f8a60;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #f0faf4;
  border: 1px solid #c6e7d4;
  transition: background 0.2s;
  align-self: flex-start;
}

.price-popular-btn:hover {
  background: #e2f5ea;
}

.price-mini-cta {
  margin: 2rem 0 3rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fdf8f9 0%, #fafaf9 100%);
  border: 1px solid #f4d8dd;
  text-align: center;
}

.price-mini-cta h3 {
  font-family: var(--font-main);
  font-size: 1.125rem;
  color: #292524;
  margin-bottom: 0.375rem;
}

.price-mini-cta p {
  font-size: 0.875rem;
  color: #78716c;
  margin-bottom: 1rem;
}

.price-mini-cta .btn-whatsapp,
.price-mini-cta .btn-primary {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 40;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: white;
  border: 1px solid #e7e5e4;
  color: #57534e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: #fdf2f4;
  color: #be5a6a;
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
  }

  .price-nav {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

@media (max-width: 640px) {
  .price-table th,
  .price-table td {
    padding: 0.75rem;
  }

  .price-table th:nth-child(2):not(:last-child),
  .price-table td:nth-child(2):not(:last-child) {
    width: 6.5rem;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 6.5rem;
    white-space: normal;
  }
}
