@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --rose-blush: #E8A5B0;
  --rose-deep: #C4607A;
  --rose-dark: #8B3A52;
  --champagne: #F5E6D3;
  --champagne-deep: #E8C9A8;
  --gold-soft: #D4A574;
  --gold-warm: #B8865A;
  --cream: #FDF8F4;
  --ivory: #FAF3EC;
  --mocha: #5C3D2E;
  --mocha-light: #8B6655;
  --pearl: #F9F4F0;
  --sage: #9BAF8E;
  --sage-light: #C5D4BE;
  --text-primary: #3D2B1F;
  --text-secondary: #7A5C4E;
  --text-muted: #A8887A;
  --border-soft: #EDD5C8;
  --shadow-rose: rgba(196, 96, 122, 0.15);
  --shadow-gold: rgba(212, 165, 116, 0.2);
  --gradient-rose: linear-gradient(135deg, #E8A5B0 0%, #C4607A 100%);
  --gradient-champagne: linear-gradient(135deg, #FDF8F4 0%, #E8C9A8 100%);
  --gradient-warm: linear-gradient(135deg, #F5E6D3 0%, #E8A5B0 50%, #C4607A 100%);
  --gradient-luxury: linear-gradient(160deg, #8B3A52 0%, #C4607A 40%, #D4A574 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--champagne);
}

::-webkit-scrollbar-thumb {
  background: var(--rose-blush);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-deep);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.font-display {
  font-family: 'Georgia', serif;
  font-style: italic;
}

.text-rose { color: var(--rose-deep); }
.text-gold { color: var(--gold-soft); }
.text-mocha { color: var(--mocha); }
.text-muted-beauty { color: var(--text-muted); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 20px var(--shadow-rose);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px var(--shadow-rose);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo img,
.site-logo svg {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose-dark);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Georgia', serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-rose);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--rose-deep);
  background-color: rgba(232, 165, 176, 0.1);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--rose-deep);
  font-weight: 600;
}

.nav-link.active::after {
  width: 60%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow-rose);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(232, 165, 176, 0.15);
  color: var(--rose-deep);
  padding-left: 1.25rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--rose-dark);
  font-size: 1.5rem;
}

.mobile-menu {
  background-color: #ffffff;
  border-top: 1px solid var(--border-soft);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 10px 30px var(--shadow-rose);
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.mobile-menu .nav-link::after {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-rose);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 96, 122, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose-deep);
}

.btn-secondary:hover {
  background: var(--rose-deep);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-rose);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-warm) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-white {
  background: #ffffff;
  color: var(--rose-deep);
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  color: var(--rose-dark);
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.75rem;
  font-size: 1rem;
}

/* ============================================
   CARDS
   ============================================ */
.beauty-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(139, 58, 82, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.beauty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(139, 58, 82, 0.12);
  border-color: var(--rose-blush);
}

.beauty-card .card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.beauty-card:hover .card-image {
  transform: scale(1.04);
}

.beauty-card .card-body {
  padding: 1.5rem;
}

.beauty-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.beauty-card .card-price {
  color: var(--rose-deep);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
}

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, var(--pearl) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(139, 58, 82, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 165, 176, 0.08) 0%, transparent 60%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(139, 58, 82, 0.12);
  border-color: var(--rose-blush);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-rose);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px var(--shadow-rose);
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139, 58, 82, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232, 165, 176, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 230, 211, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  animation: floatElement 8s ease-in-out infinite;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(196, 96, 122, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: sans-serif;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--rose-deep);
  font-style: italic;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-rose);
  border-radius: 2px;
  margin: 1.25rem auto;
}

.section-divider.left {
  margin-left: 0;
}

.bg-cream { background-color: var(--cream); }
.bg-ivory { background-color: var(--ivory); }
.bg-pearl { background-color: var(--pearl); }
.bg-champagne { background-color: var(--champagne); }

.bg-rose-gradient {
  background: var(--gradient-luxury);
}

.bg-soft-rose {
  background: linear-gradient(135deg, rgba(232, 165, 176, 0.15) 0%, rgba(245, 230, 211, 0.3) 100%);
}

/* ============================================
   FORMS
   ============================================ */
.beauty-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 50px rgba(139, 58, 82, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-family: sans-serif;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  background-color: var(--pearl);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--rose-blush);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 165, 176, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.form-control.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-error-msg {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C4607A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .ri {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-blush);
  font-size: 1.1rem;
  pointer-events: none;
}

.input-icon-wrap .form-control {
  padding-left: 2.75rem;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item.active {
  box-shadow: 0 4px 20px var(--shadow-rose);
  border-color: var(--rose-blush);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(232, 165, 176, 0.06);
}

.accordion-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Georgia', serif;
}

.accordion-price {
  color: var(--rose-deep);
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
}

.accordion-arrow {
  color: var(--rose-deep);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
}

.accordion-content p {
  padding-top: 1rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--mocha) 0%, var(--rose-dark) 100%);
  border-top: 3px solid var(--rose-blush);
  padding: 1.25rem 2rem;
  box-shadow: 0 -10px 40px rgba(139, 58, 82, 0.3);
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: 'Georgia', serif;
}

.cookie-text p {
  color: #f0d0d8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--champagne-deep);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-text a:hover {
  color: #ffffff;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--gradient-rose);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 96, 122, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 96, 122, 0.5);
}

.cookie-decline {
  background: transparent;
  color: #f0d0d8;
  border: 1px solid rgba(240, 208, 216, 0.4);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-decline:hover {
  border-color: rgba(240, 208, 216, 0.8);
  color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(160deg, var(--mocha) 0%, #3a1f14 100%);
  color: #f0d0d8;
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(240, 208, 216, 0.15);
}

.footer-logo-text {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 2rem;
  color: #ffffff;
}

.footer-tagline {
  color: var(--champagne-deep);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: sans-serif;
  font-weight: 700;
}

.footer-link {
  color: rgba(240, 208, 216, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.footer-link:hover {
  color: var(--rose-blush);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(240, 208, 216, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item .ri {
  color: var(--rose-blush);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(240, 208, 216, 0.5);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(240, 208, 216, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--rose-blush);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 165, 176, 0.15);
  border: 1px solid rgba(232, 165, 176, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-blush);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-rose);
}

/* ============================================
   PRICE LIST
   ============================================ */
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: background-color 0.25s ease;
  gap: 1rem;
  border-bottom: 1px dashed var(--border-soft);
}

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

.price-item:hover {
  background-color: rgba(232, 165, 176, 0.08);
}

.price-item-name {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.price-item-duration {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.price-item-value {
  color: var(--rose-deep);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 25px rgba(139, 58, 82, 0.07);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--rose-blush);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(139, 58, 82, 0.12);
  border-color: var(--rose-blush);
}

.testimonial-stars {
  color: var(--gold-soft);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   BADGE / TAGS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: sans-serif;
}

.badge-rose {
  background: rgba(196, 96, 122, 0.1);
  color: var(--rose-deep);
}

.badge-gold {
  background: rgba(212, 165, 116, 0.15);
  color: var(--gold-warm);
}

.badge-sage {
  background: rgba(155, 175, 142, 0.15);
  color: #5a7a4e;
}

/* ============================================
   STEP / PROCESS
   ============================================ */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-rose);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--shadow-rose);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--gradient-luxury);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.breadcrumb .current {
  color: var(--champagne-deep);
  font-size: 0.85rem;
}

/* ============================================
   LOADING / SPINNER
   ============================================ */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-soft);
  border-top-color: var(--rose-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-rose {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 96, 122, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(196, 96, 122, 0); }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease both;
}

.animate-fade-left {
  animation: fadeInLeft 0.7s ease both;
}

.animate-fade-right {
  animation: fadeInRight 0.7s ease both;
}

.pulse-rose {
  animation: pulse-rose 2.5s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ============================================
   UTILITY
   ============================================ */
.gradient-text {
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-rose { border-color: var(--rose-blush) !important; }
.border-champagne { border-color: var(--champagne-deep) !important; }

.shadow-beauty {
  box-shadow: 0 8px 30px rgba(139, 58, 82, 0.1);
}

.shadow-beauty-lg {
  box-shadow: 0 20px 60px rgba(139, 58, 82, 0.15);
}

.rounded-beauty {
  border-radius: 20px;
}

.rounded-beauty-lg {
  border-radius: 30px;
}

.divider-rose {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-blush), transparent);
  border: none;
  margin: 2rem 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    height: 65px;
  }

  .beauty-form {
    padding: 1.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-hero {
    padding: 2.5rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cookie-banner {
    padding: 1rem;
  }
}