/* ============================================================
   JATÉ Beauty Lounge - Hauptstylesheet
   Farben: Creme (#f5f0eb), Gold (#b8962e / #d4af5a), Dunkelgold (#8b6914)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Josefin+Sans:wght@200;300;400;600&display=swap');

:root {
  --cream: #f5f0eb;
  --cream-dark: #ede7df;
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --gold-dark: #8b6914;
  --gold-pale: rgba(184,150,46,0.12);
  --text-dark: #2c2416;
  --text-mid: #5a4a2a;
  --text-light: #8b7355;
  --white: #fff;
  --shadow: 0 4px 30px rgba(184,150,46,0.15);
  --shadow-lg: 0 10px 60px rgba(184,150,46,0.2);
  --radius: 2px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

p { line-height: 1.8; color: var(--text-mid); }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

/* ---- LOADER ---- */
#page-loader {
  position: fixed; inset: 0; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(245,240,235,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(184,150,46,0.1);
  padding: 0.7rem 2rem;
}
.nav-logo img { height: 65px; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 50px; }

.nav-menu {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-menu a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dark); position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: right;
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-menu a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--cream) !important;
  padding: 0.6rem 1.5rem; font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 25px; height: 1.5px; background: var(--text-dark);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(ellipse, rgba(184,150,46,0.08) 0%, transparent 70%);
  border-radius: 50%; animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-3%, 2%); }
}
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text { animation: fadeSlideUp 1s ease both; }
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-title { color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 1rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 400px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  animation: fadeSlideUp 1s ease 0.3s both;
  position: relative;
}
.hero-image img {
  width: 100%; max-width: 500px;
  filter: drop-shadow(0 20px 60px rgba(184,150,46,0.2));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; transition: var(--transition); cursor: pointer;
  border: none; text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--cream);
  box-shadow: 0 4px 20px rgba(184,150,46,0.3);
}
.btn-gold:hover {
  background: var(--gold-dark); color: var(--cream);
  box-shadow: 0 8px 30px rgba(184,150,46,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--cream);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--gold);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-title { color: var(--text-dark); margin-bottom: 1.2rem; }
.section-subtitle { color: var(--text-light); max-width: 550px; font-size: 1rem; margin-bottom: 3rem; }

/* ---- DIVIDER ---- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.5rem 0;
  color: var(--gold); font-size: 0.8rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--gold-light);
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184,150,46,0.15);
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
  text-align: center;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  font-size: 2.5rem; margin-bottom: 1.2rem; display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 {
  font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; flex: 1; }
.service-card .btn { width: 100%; justify-content: center; }

/* ---- ABOUT BAND ---- */
.about-band {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d2f1a 100%);
  padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.about-band::before {
  content: 'JATÉ';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 20rem); font-weight: 300;
  color: rgba(184,150,46,0.06); white-space: nowrap;
  pointer-events: none; letter-spacing: 0.2em;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.about-text h2 { color: var(--cream); }
.about-text p { color: rgba(245,240,235,0.75); margin-bottom: 1.5rem; }
.about-text .section-label { color: var(--gold-light); }
.about-text .section-label::before { background: var(--gold-light); }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: var(--gold-light); line-height: 1;
  display: block;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,235,0.6); }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: var(--white); padding: 2rem;
  border-left: 3px solid var(--gold);
  position: relative;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 3px; }
.review-text { font-style: italic; color: var(--text-mid); margin-bottom: 1.2rem; font-size: 0.95rem; }
.review-author { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.review-service { font-size: 0.7rem; color: var(--text-light); }

/* ---- SERVICE DETAIL PAGES ---- */
.service-hero {
  min-height: 50vh; background: var(--cream);
  display: flex; align-items: flex-end; padding: 120px 2rem 4rem;
  position: relative;
}
.service-hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.breadcrumb {
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-light);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }

.price-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.price-table th {
  background: var(--text-dark); color: var(--gold-light);
  padding: 1rem 1.5rem; text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.price-table td { padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(184,150,46,0.1); }
.price-table tr:hover td { background: var(--gold-pale); }
.price-table .price { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0; background: rgba(184,150,46,0.3);
  opacity: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s; font-size: 2rem; color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184,150,46,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.9rem; color: var(--text-mid); display: block;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.9rem 1rem;
  background: var(--white); border: 1px solid rgba(184,150,46,0.2);
  color: var(--text-dark); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem; transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,46,0.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dsgvo-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.6; }
.dsgvo-text a { color: var(--gold); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark); color: rgba(245,240,235,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 50px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(245,240,235,0.6); }
.footer h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { font-size: 0.85rem; color: rgba(245,240,235,0.6); transition: color 0.3s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(184,150,46,0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(245,240,235,0.4); }
.footer-bottom a { color: rgba(245,240,235,0.4); font-size: 0.75rem; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(184,150,46,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,235,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* ---- PAGE TITLE BAND ---- */
.page-title-band {
  padding: 120px 2rem 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid rgba(184,150,46,0.15);
  text-align: center;
}
.page-title-band h1 { margin-bottom: 0.5rem; }
.page-title-band .section-label { justify-content: center; }
.page-title-band .section-label::before { display: none; }

/* ---- GOLD SEPARATOR ---- */
.gold-sep {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.5rem 0;
}
.gold-sep.center { margin: 1.5rem auto; }

/* ---- ALERT / FLASH ---- */
.alert {
  padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  border-left: 3px solid; font-size: 0.9rem;
}
.alert-success { background: rgba(46,184,80,0.08); border-color: #2eb850; color: #1a6b2e; }
.alert-error { background: rgba(184,46,46,0.08); border-color: #b82e2e; color: #6b1a1a; }

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-body {
  background: #1a1208;
  font-family: 'Josefin Sans', sans-serif;
}
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0; width: 250px;
  background: #0f0b04;
  border-right: 1px solid rgba(184,150,46,0.15);
  display: flex; flex-direction: column;
  z-index: 100; overflow-y: auto;
}
.admin-logo {
  padding: 1.5rem; border-bottom: 1px solid rgba(184,150,46,0.15);
  text-align: center;
}
.admin-logo img { height: 40px; filter: brightness(0) saturate(100%) invert(70%) sepia(40%) saturate(800%) hue-rotate(5deg); }
.admin-nav { padding: 1.5rem 0; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  color: rgba(245,240,235,0.6);
  font-size: 0.8rem; letter-spacing: 0.1em;
  transition: var(--transition); border-left: 2px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--gold-light); background: rgba(184,150,46,0.08);
  border-left-color: var(--gold);
}
.admin-nav .nav-section {
  padding: 1rem 1.5rem 0.3rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,235,0.25);
}
.admin-main {
  margin-left: 250px; min-height: 100vh;
  padding: 2rem;
  color: rgba(245,240,235,0.85);
}
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184,150,46,0.15);
}
.admin-topbar h1 { font-size: 1.5rem; color: var(--cream); }
.admin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,46,0.15);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.admin-card h3 { font-size: 1rem; color: var(--gold-light); margin-bottom: 1rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 0.75rem 1rem; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); border-bottom: 1px solid rgba(184,150,46,0.2);
}
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(184,150,46,0.08); font-size: 0.85rem; }
.admin-table tr:hover td { background: rgba(184,150,46,0.05); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.admin-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,46,0.15);
  padding: 1.5rem; text-align: center;
}
.admin-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold-light); display: block; }
.admin-stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,235,0.4); }
.admin-form .form-control { background: rgba(255,255,255,0.06); border-color: rgba(184,150,46,0.2); color: var(--cream); }
.admin-form .form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.admin-form .form-label { color: var(--gold-light); }
.admin-form textarea.form-control { min-height: 180px; }
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-success { background: rgba(46,184,80,0.15); color: #4cc870; }
.badge-warning { background: rgba(184,150,46,0.15); color: var(--gold-light); }
.badge-danger { background: rgba(184,46,46,0.15); color: #e07070; }

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

@media (max-width: 768px) {
  section { padding: 4rem 1.2rem; }

  .navbar { padding: 1rem 1.2rem; }
  .nav-menu {
    position: fixed; inset: 0; background: rgba(245,240,235,0.98);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 0.9rem; letter-spacing: 0.2em; }
  .nav-toggle { display: flex; z-index: 1001; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; display: flex; justify-content: center; }
  .hero-image img { max-width: 280px; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; padding: 1.2rem; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 1.2rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-title-band { padding: 100px 1.2rem 2rem; }

  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 3rem 0; }
.step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  color: rgba(184,150,46,0.15); position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  line-height: 1;
}
.step-content { position: relative; padding-top: 3rem; }
.step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; }

/* Notice box */
.info-box {
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem; margin: 2rem 0;
}
.info-box p { font-size: 0.9rem; }

/* ---- MOBILE STICKY CTA ---- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--text-dark);
  border-top: 1px solid rgba(184,150,46,0.3);
  padding: 0.75rem 1rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-cta-bar .mcta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  transition: var(--transition);
}
.mobile-cta-bar .mcta-termin {
  background: var(--gold); color: var(--cream);
}
.mobile-cta-bar .mcta-whatsapp {
  background: #25d366; color: white;
}
.mobile-cta-bar .mcta-termin:hover  { background: var(--gold-dark); }
.mobile-cta-bar .mcta-whatsapp:hover { background: #1da550; }

@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; }
  /* Push page content above sticky bar */
  body { padding-bottom: 70px; }
  /* Hide whatsapp float on mobile (bar replaces it) */
  .whatsapp-float { display: none; }
}

/* ---- COOKIE CONSENT ---- */
.cookie-banner{position:fixed;left:1.2rem;right:1.2rem;bottom:1.2rem;z-index:9500;background:var(--text-dark);color:var(--cream);border:1px solid rgba(184,150,46,.35);box-shadow:0 16px 50px rgba(0,0,0,.35);padding:1.2rem;display:none;max-width:780px;margin:0 auto}
.cookie-banner.active{display:block}.cookie-banner h3{color:var(--cream);font-size:1.25rem;margin-bottom:.4rem}.cookie-banner p{font-size:.85rem;color:rgba(245,240,235,.75);margin-bottom:.8rem}.cookie-actions{display:flex;gap:.7rem;flex-wrap:wrap}.cookie-btn{border:1px solid rgba(184,150,46,.45);background:transparent;color:var(--cream);padding:.65rem .9rem;cursor:pointer;font-family:'Josefin Sans',sans-serif;text-transform:uppercase;letter-spacing:.12em;font-size:.68rem}.cookie-btn.accept{background:var(--gold);border-color:var(--gold);color:white}.cookie-settings{display:none;margin:.8rem 0;border-top:1px solid rgba(184,150,46,.2);padding-top:.8rem}.cookie-settings.active{display:block}.cookie-settings label{display:block;margin:.45rem 0;font-size:.85rem;color:rgba(245,240,235,.85)}.cookie-revoke{position:fixed;left:1rem;bottom:1rem;z-index:9400;width:42px;height:42px;border-radius:50%;border:1px solid rgba(184,150,46,.4);background:var(--text-dark);color:var(--gold-light);display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.25)}@media(max-width:768px){.cookie-banner{bottom:5.8rem}.cookie-revoke{bottom:5.2rem}}
.gallery-filter{display:flex;gap:.7rem;justify-content:center;flex-wrap:wrap;margin:0 0 2rem}.gallery-filter a{border:1px solid rgba(184,150,46,.3);padding:.65rem 1rem;text-decoration:none;color:var(--gold);font-size:.75rem;text-transform:uppercase;letter-spacing:.14em}.gallery-filter a.active,.gallery-filter a:hover{background:var(--gold);color:white}

/* ---- ALEXANDRA BUSINESS PAGE ---- */
.business-hero {
  min-height: 100vh;
  padding: 9rem 2rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.business-hero h1 span { color: var(--gold); font-style: italic; }
.business-hero p { max-width: 620px; margin-bottom: 1rem; font-size: 1.05rem; }
.business-hero__buttons { display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; }
.business-hero__image { position:relative; }
.business-hero__image::before {
  content:''; position:absolute; inset:1.5rem -1.5rem -1.5rem 1.5rem;
  border:1px solid var(--gold-light); z-index:-1;
}
.business-hero__image img, .business-image-card img {
  width:100%; display:block; object-fit:cover; box-shadow:var(--shadow-lg);
}
.business-hero__image img { aspect-ratio: 4 / 5; }
.business-section { padding: 6rem 2rem; }
.business-two-col {
  display:grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap:4rem; align-items:center;
}
.business-two-col.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); }
.business-image-card img { aspect-ratio: 4 / 3; }
.business-badges { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:2rem; }
.business-badges span {
  background:var(--gold-pale); border:1px solid rgba(184,150,46,.18);
  color:var(--gold-dark); padding:.65rem 1rem; font-size:.8rem; letter-spacing:.08em;
  text-transform:uppercase;
}
.business-centered { max-width:780px; margin:0 auto 3rem; text-align:center; }
.business-centered p { margin-bottom:1rem; }
.business-timeline { display:grid; gap:1.5rem; max-width:900px; margin:0 auto; }
.business-step {
  background:var(--white); padding:2rem; border-left:3px solid var(--gold);
  box-shadow:var(--shadow);
}
.business-step span { color:var(--gold); font-size:.75rem; text-transform:uppercase; letter-spacing:.18em; }
.business-step h3 { margin:.5rem 0 1rem; }
.business-results-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1rem; }
.business-result-card {
  background:var(--cream); padding:1.5rem; border:1px solid rgba(184,150,46,.15);
  color:var(--text-mid); line-height:1.6; box-shadow:0 4px 24px rgba(184,150,46,.08);
}
.business-gallery-band { background:var(--text-dark); padding:5rem 2rem; }
.business-masonry { columns:3 230px; column-gap:1rem; }
.business-masonry img {
  width:100%; margin:0 0 1rem; break-inside:avoid; display:block;
  border:6px solid rgba(255,255,255,.08); box-shadow:0 8px 35px rgba(0,0,0,.22);
}
.business-love h3 { margin:2rem 0 1rem; }
.business-card-dark {
  background:var(--text-dark); color:var(--cream); padding:2.5rem;
  box-shadow:var(--shadow-lg); border:1px solid rgba(212,175,90,.25);
}
.business-card-dark h3, .business-card-dark p { color:var(--cream); }
.business-card-dark ul { margin:1.2rem 0 1.5rem 1.2rem; color:var(--cream); line-height:1.9; }
.business-checks { display:grid; gap:.6rem; margin-top:1.5rem; }
.business-checks span { color:var(--gold-light); }
.business-contact-wrap { max-width:760px; }
.business-contact-form {
  background:var(--white); padding:2rem; box-shadow:var(--shadow-lg);
  border:1px solid rgba(184,150,46,.16);
}
@media (max-width: 900px) {
  .business-hero, .business-two-col, .business-two-col.reverse { grid-template-columns:1fr; gap:2.5rem; }
  .business-hero { padding-top:7rem; }
  .business-hero__image::before { display:none; }
}
