/*
Theme Name: AMIRA MODELS
Theme URI: https://amira-escorts.de
Author: AMIRA MODELS
Description: High Class Escort Agentur München – Premium Theme
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: amira-models
*/

/* ── FONTS (exakt aus Lovable index.css) ──────── */
@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=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS VARS (exakt aus Lovable :root) ──────────
   --background: 40 30% 96%  → hsl(40,30%,96%)  = #f5f0e8
   --foreground: 30 10% 15%  → hsl(30,10%,15%)  = #2a2520
   --primary:    36 45% 42%  → hsl(36,45%,42%)  = #9e7840
   --secondary:  40 20% 88%  → hsl(40,20%,88%)  = #e4ddd2
   --muted-fg:   30 8%  45%  → hsl(30,8%,45%)   = #746a62
   --border:     36 20% 82%  → hsl(36,20%,82%)  = #d6cfc4
*/
:root {
  --bg:      hsl(40, 30%, 96%);   /* #f5f0e8 */
  --bg2:     hsl(40, 20%, 88%);   /* #e4ddd2 */
  --bg3:     hsl(40, 25%, 92%);   /* #ede8df */
  --fg:      hsl(30, 10%, 15%);   /* #2a2520 */
  --fg2:     hsl(30,  8%, 45%);   /* #746a62 */
  --fg3:     hsl(30,  6%, 62%);   /* #9e9590 */
  --gold:    hsl(36, 45%, 42%);   /* #9e7840 */
  --gold2:   hsl(36, 55%, 55%);   /* #bf974e */
  --border:  hsl(36, 20%, 82%);   /* #d6cfc4 */
  --border2: hsl(36, 20%, 88%);   /* #e4ddd6 */

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --w:    1400px;
  --cont: 2rem;
  --r:    0.25rem;
  --t:    0.3s ease;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold2); }
ul, ol { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }
p { color: var(--fg2); line-height: 1.7; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* Headings: Cormorant Garamond – exakt wie Lovable font-display */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--cont);
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section  { padding: 4rem 0; }
.section-lg { padding: 6rem 0; }

/* bg variants matching Lovable bg-background / bg-secondary */
.bg-main { background: var(--bg); }
.bg-sec  { background: var(--bg2); }

/* Section header */
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.sec-head p { font-size: 0.875rem; color: var(--fg2); margin-top: 0.75rem; }

/* Gold divider – Lovable "line-gold" */
.line-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2rem auto;
  max-width: 600px;
}

/* Overline */
.overline {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── BUTTONS ─────────────────────────────────── */
/* Lovable: bg-primary text-primary-foreground px-8 py-3 text-xs uppercase tracking-[0.2em] */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
  border-radius: var(--r);
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold2); color: #fff; }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-dark { background: var(--fg); color: #fff; }
.btn-dark:hover { background: var(--gold); color: #fff; }
.btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btns.center { justify-content: center; }

/* ── HEADER ──────────────────────────────────── */
/* ── HEADER ──────────────────────────────────── */
#site-header {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 9999 !important;
  background: hsla(40, 30%, 96%, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border) !important;
  transition: box-shadow var(--t);
  width: 100% !important;
}
#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(42,37,32,0.08);
}

.hdr-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: auto !important;
  min-height: 72px;
  padding: 14px 0 !important; /* Abstand oben/unten */
  gap: 1.5rem;
}

/* Logo */
.hdr-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0;
}
.hdr-logo img {
  height: 44px !important;
  width: auto !important;
  display: block !important;
}

/* Desktop Nav – zentriert */
.hdr-nav {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  flex: 1;
  justify-content: center;
}
.hdr-nav ul {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
}
.hdr-nav a, .hdr-nav ul li a {
  font-family: var(--sans) !important;
  font-size: 0.6875rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--fg2) !important;
  text-decoration: none !important;
  transition: color var(--t) !important;
  white-space: nowrap;
}
.hdr-nav a:hover,
.hdr-nav a.active,
.hdr-nav ul li.current-menu-item > a { color: var(--gold) !important; }

/* Right side */
.hdr-right {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-shrink: 0;
}
.hdr-lang {
  display: flex !important; align-items: center !important; gap: 0.35rem !important;
  font-family: var(--sans) !important; font-size: 0.6875rem !important;
  font-weight: 400 !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important; color: var(--fg2) !important;
  cursor: pointer !important; background: none !important; border: none !important;
}
.hdr-lang:hover { color: var(--gold) !important; }
.hdr-phone {
  display: flex !important; align-items: center !important; gap: 0.4rem !important;
  font-family: var(--sans) !important; font-size: 0.6875rem !important;
  font-weight: 400 !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important; color: var(--gold) !important;
  text-decoration: none !important;
}
.hdr-phone:hover { color: var(--gold2) !important; }

/* Mobile burger */
.hdr-burger { display: none; background: none; border: none; padding: 4px; flex-shrink: 0; cursor: pointer; }
.hdr-burger svg { width: 24px; height: 24px; color: var(--fg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg2);
  border-bottom: 1px solid var(--border2);
  text-decoration: none;
  transition: color var(--t);
}
#mobile-nav a:hover, #mobile-nav a.active { color: var(--gold); }
#mobile-nav .mob-phone {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.25rem 0 0;
  font-size: 0.875rem; color: var(--gold);
  border-bottom: none;
  text-decoration: none;
}

/* Main content offset for fixed header */
body { padding-top: 80px; }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb-bar { background: var(--bg2); border-bottom: 1px solid var(--border2); padding: 0.75rem 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--fg2); }
.breadcrumb a { color: var(--fg2); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--fg3); }
.breadcrumb .curr { color: var(--fg); }

/* ── PAGE HERO ───────────────────────────────── */
/* Lovable: py-16 bg-secondary text-center */
.page-hero { background: var(--bg2); text-align: center; padding: 4rem 0; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .sub {
  font-size: 0.875rem;
  color: var(--fg2);
  max-width: 42rem;
  margin: 0 auto;
}

/* ── VIDEO HERO ──────────────────────────────── */
/* Lovable: h-screen flex items-center justify-center */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  /* subtract header height since body has padding-top */
  margin-top: -80px;
  padding-top: 80px;
}
.home-hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Lovable: bg-background/50 */
.home-hero .overlay {
  position: absolute; inset: 0;
  background: hsla(40, 30%, 96%, 0.45);
}
.home-hero .hero-body {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
}
.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.home-hero .hero-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--fg2);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── INTRO SECTION ───────────────────────────── */
/* Lovable: py-24 bg-secondary */
.intro-sec { background: var(--bg2); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.intro-grid h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}
.gold-text {
  /* Lovable text-gold-gradient */
  background: linear-gradient(135deg, hsl(36,55%,72%), hsl(36,45%,58%), hsl(36,35%,42%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: color var(--t);
}
.intro-link:hover { color: var(--gold2); }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.cat-card { position: relative; display: block; overflow: hidden; aspect-ratio: 3/2; text-decoration: none; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cat-card:hover img { transform: scale(1.1); }
.cat-card .cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(40,30%,8%,0.88), transparent); }
.cat-label {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--sans); font-size: 0.625rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: hsla(40,30%,96%,0.65);
  backdrop-filter: blur(4px); padding: 0.25rem 0.75rem;
}
.cat-bottom {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.cat-title {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 600; color: #fff; text-transform: uppercase;
}
.cat-arrow {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--fg);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
  flex-shrink: 0;
}
.cat-card:hover .cat-arrow { background: var(--gold); }
.cat-arrow svg { width: 1rem; height: 1rem; color: var(--bg); }

/* ── MODELS GRID ─────────────────────────────── */
/* Lovable: grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-6 */
.models-grid { display: grid; gap: 1.5rem; }
.models-grid-4 { grid-template-columns: repeat(4, 1fr); }
.models-grid-5 { grid-template-columns: repeat(5, 1fr); }

.model-card { display: block; text-decoration: none; }
.model-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--bg2);
}
.model-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.7s ease;
}
.model-card:hover .model-card-img img { transform: scale(1.05); }
.model-card-img .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(40,30%,8%,0.78), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.model-card:hover .card-overlay { opacity: 1; }
.model-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 0.625rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.18rem 0.65rem;
}
.model-info { padding: 1rem 0 0.5rem; text-align: center; }
.model-name {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.model-city {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

/* Filter tabs – Lovable */
.filter-tabs {
  display: flex; gap: 0;
  margin-bottom: 2rem; flex-wrap: wrap; justify-content: center;
}
.filter-tab {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg); color: var(--fg2);
  cursor: pointer; transition: all var(--t);
  position: relative; margin-right: -1px;
}
.filter-tab:first-child { border-radius: var(--r) 0 0 var(--r); }
.filter-tab:last-child  { border-radius: 0 var(--r) var(--r) 0; margin-right: 0; }
.filter-tab.active { background: var(--gold); border-color: var(--gold); color: #fff; z-index: 1; }
.filter-tab:hover:not(.active) { color: var(--gold); border-color: var(--gold); z-index: 1; }

/* ── USPs / WHY SECTION ──────────────────────── */
.usps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.usp-item { text-align: center; padding: 2rem; }
.usp-icon { width: 2rem; height: 2rem; color: var(--gold); margin: 0 auto 1rem; }
.usp-item h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.usp-item p  { font-size: 0.875rem; }

/* ── SERVICES GRID ───────────────────────────── */
/* Lovable: grid-cols-2 lg:grid-cols-4 gap-6 bg-secondary */
.srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.srv-item { background: var(--bg2); padding: 1.5rem; text-align: center; border-radius: var(--r); }
.srv-icon { width: 1.5rem; height: 1.5rem; color: var(--gold); margin: 0 auto 0.75rem; }
.srv-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.srv-item p  { font-size: 0.75rem; }

/* ── CTA SECTION ─────────────────────────────── */
.cta-sec { text-align: center; }
.cta-sec h2 { margin-bottom: 1.5rem; }
.cta-sec p  { font-size: 0.875rem; max-width: 32rem; margin: 0 auto 2rem; }

/* ── MODEL PROFILE ───────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: 460px 1fr;  /* breiter für Bilder */
  gap: 4rem;                          /* mehr Abstand rechts */
  align-items: start;                 /* PFLICHT für sticky */
}
/* Bilder scrollen automatisch mit – sticky bleibt oben */
.profile-gallery {
  position: sticky;
  top: 96px;           /* header height + etwas Luft */
  align-self: start;   /* PFLICHT damit sticky funktioniert */
}
.profile-main-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: top; display: block; }
.profile-thumbs { display: flex; gap: 0.4rem; margin-top: 0.4rem; overflow-x: auto; scrollbar-width: none; }
.profile-thumbs::-webkit-scrollbar { display: none; }
.profile-thumb { width: 64px; height: 64px; object-fit: cover; object-position: top; cursor: pointer; opacity: 0.55; flex-shrink: 0; transition: opacity 0.2s; }
.profile-thumb:hover, .profile-thumb.active { opacity: 1; }

.profile-name { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; color: var(--fg); margin-bottom: 0.25rem; }
.profile-sub  { font-family: var(--sans); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1.5rem; }

/* Stats table */
.profile-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.profile-table tr { border-bottom: 1px solid var(--border2); }
.profile-table td { padding: 0.6rem 0; font-size: 0.875rem; }
.profile-table .lbl { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fg3); width: 40%; }

/* Availability badge */
.avail-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.unavail .avail-dot { background: var(--fg3); }
.unavail .avail-badge { color: var(--fg3); }

/* Services tags */
.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.5rem; }
.service-tag {
  font-family: var(--sans); font-size: 0.625rem; font-weight: 400;
  letter-spacing: 0.04em; padding: 0.25rem 0.65rem;
  border: 1px solid var(--border); color: var(--fg2);
  background: var(--bg2); border-radius: var(--r);
}

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.price-row { border-bottom: 1px solid var(--border2); display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.25rem; background: var(--bg2); margin-bottom: 0.5rem; border: 1px solid var(--border); border-radius: var(--r); }
.price-dur { font-size: 0.875rem; color: var(--fg); }
.price-val { font-family: var(--serif); font-size: 1.125rem; font-weight: 700; color: var(--fg); }

/* Profile form */
.profile-form { background: var(--bg2); padding: 2rem; border-radius: var(--r); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.3rem; }
.fg label { font-family: var(--sans); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg2); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--fg); font-family: var(--sans); font-size: 0.875rem;
  font-weight: 400; appearance: none;
  border-radius: var(--r); transition: border-color var(--t);
}
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--gold); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--fg3); }
.fg textarea { min-height: 6rem; resize: vertical; }

/* Reviews */
.review-card { background: var(--bg2); padding: 1.25rem; border-radius: var(--r); margin-bottom: 0.75rem; border: 1px solid var(--border); }
.review-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.review-text  { font-size: 0.8rem; font-style: italic; color: var(--fg2); margin-bottom: 0.5rem; }
.review-auth  { font-family: var(--sans); font-size: 0.65rem; font-weight: 600; color: var(--fg3); }

/* ── HONORARE ─────────────────────────────────── */
.rate-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg2); border: 1px solid var(--border);
  margin-bottom: 0.5rem; border-radius: var(--r);
}
.rate-dur { font-size: 0.875rem; color: var(--fg); }
.rate-val { font-family: var(--serif); font-size: 1.125rem; font-weight: 700; color: var(--fg); }

/* ── BLOG ─────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; gap: 2.5rem; }
.blog-card { display: grid; grid-template-columns: 320px 1fr; gap: 1.5rem; align-items: start; }
.blog-card-img { overflow: hidden; aspect-ratio: 16/10; background: var(--bg2); flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-cat {
  display: inline-block; font-family: var(--sans); font-size: 0.75rem;
  font-weight: 500; background: hsla(36,45%,42%,0.1); color: var(--gold);
  padding: 0.15rem 0.5rem; border-radius: 2px; margin-bottom: 0.5rem;
}
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--fg2); margin-bottom: 0.5rem; flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: 0.25rem; }
.blog-meta-item svg { width: 12px; height: 12px; }
.blog-h { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-h:hover { color: var(--gold); }
.blog-exc { font-size: 0.875rem; color: var(--fg2); line-height: 1.7; }
.blog-more {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  margin-top: 0.75rem; text-decoration: none;
}
.blog-more svg { width: 12px; height: 12px; }

/* ── CONTACT CARDS ───────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.contact-card {
  text-align: center; padding: 2rem;
  background: var(--bg2); text-decoration: none;
  transition: background var(--t); border-radius: var(--r);
  display: block;
}
.contact-card:hover { background: hsl(40,15%,84%); }
.contact-card-icon { color: var(--gold); margin: 0 auto 1rem; }
.contact-card-icon svg { width: 2rem; height: 2rem; }
.contact-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-card .val { font-size: 0.875rem; color: var(--fg2); }
.contact-card .link-label { font-size: 0.75rem; color: var(--gold); margin-top: 0.5rem; display: block; }

/* ── BOOKING FORM ────────────────────────────── */
.booking-form-wrap { background: var(--bg2); padding: 3rem; border-radius: var(--r); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* ── BEWERBUNG BENEFITS ──────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.benefit-card { background: var(--bg2); border: 1px solid var(--border); padding: 1.5rem; border-radius: var(--r); }
.benefit-card svg { width: 1.5rem; height: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.75rem; color: var(--fg2); }

/* ── LISTING ITEMS (Hotels, Bars, Restaurants) ── */
.listing-item {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 2rem; margin-bottom: 1.5rem; border-radius: var(--r);
  transition: border-color var(--t);
}
.listing-item:hover { border-color: hsla(36,45%,42%,0.3); }
.listing-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-right: 0.75rem; }
.listing-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--fg); }
.listing-cat { font-size: 0.875rem; font-weight: 500; color: var(--gold); margin: 0.25rem 0 0.75rem; }
.listing-desc { color: var(--fg2); line-height: 1.7; margin-bottom: 1rem; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.875rem; color: var(--fg2); }
.listing-meta span { display: flex; align-items: center; gap: 0.4rem; }
.listing-meta svg { width: 1rem; height: 1rem; color: var(--gold); }
.listing-addr { font-size: 0.75rem; color: var(--fg3); margin-top: 0.5rem; }

/* ── FOOTER ──────────────────────────────────── */
/* Lovable: bg-secondary border-t py-16 */
#site-footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-inner { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr 1fr 220px; gap: 2rem 3rem; }

.footer-logo { display: block; text-decoration: none; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: auto; }
.footer-desc { font-size: 0.875rem; color: var(--fg2); line-height: 1.75; }

.footer-heading {
  font-family: var(--serif);
  font-size: 1.125rem; font-weight: 600;
  color: var(--fg); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--fg2); text-decoration: none; transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--fg2); text-decoration: none;
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }

.footer-divider { margin: 3rem 0 2rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: var(--fg3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--fg3); text-decoration: none; transition: color var(--t); }
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 1.375rem; height: 1.375rem; }

/* ── SEO TEXT BLOCKS ─────────────────────────── */
.seo-text { max-width: 56rem; margin: 0 auto; }
.seo-text h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.seo-text h3 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.seo-text p  { font-size: 0.875rem; line-height: 1.8; }
.seo-text strong { font-weight: 600; color: var(--fg); }

/* ── IMPRESSUM / LEGAL ───────────────────────── */
.legal-body { max-width: 48rem; margin: 0 auto; }
.legal-body h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-body h3 { font-size: 1.125rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.legal-body p  { font-size: 0.875rem; color: var(--fg2); line-height: 1.8; }

/* ── INFO NOTE BOX ───────────────────────────── */
.info-box { background: var(--bg2); border: 1px solid var(--border); padding: 2rem; border-radius: var(--r); }
.info-box h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.info-box li { font-size: 0.875rem; color: var(--fg2); padding: 0.35rem 0; padding-left: 1rem; position: relative; }
.info-box li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/* ── CITY / SEO LP ───────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.city-card {
  display: block; text-decoration: none; padding: 1.5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); transition: border-color var(--t);
}
.city-card:hover { border-color: var(--gold); }
.city-card h3 { font-size: 1.25rem; transition: color var(--t); }
.city-card:hover h3 { color: var(--gold); }

/* ── LIGHTBOX ─────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 8, 6, 0.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 88vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain; display: block; user-select: none;
}
.lightbox-prev,
.lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.18);
  color: #fff; cursor: pointer;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t);
  border-radius: var(--r); z-index: 10000;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: hsla(36,45%,42%,0.55); border-color: var(--gold); }
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.18);
  color: #fff; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t); border-radius: var(--r); z-index: 10000;
}
.lightbox-close:hover { background: hsla(36,45%,42%,0.55); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: fixed; bottom: 4.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.45);
  z-index: 10000; user-select: none;
}
.lightbox-thumbs {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10000;
  max-width: 80vw; overflow-x: auto; scrollbar-width: none;
  padding: 4px;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb-btn {
  width: 50px; height: 50px; flex-shrink: 0;
  border: 2px solid transparent; cursor: pointer;
  padding: 0; background: none; opacity: 0.45;
  transition: opacity .2s, border-color .2s;
  border-radius: 2px; overflow: hidden;
}
.lightbox-thumb-btn img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.lightbox-thumb-btn.active,
.lightbox-thumb-btn:hover { opacity: 1; border-color: var(--gold); }
.profile-main-img { cursor: zoom-in; }

/* ── SIMILAR MODELS ──────────────────────────── */
.similar-sec { background: var(--bg2); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .models-grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 360px 1fr; gap: 2rem; }
  .models-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .models-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hdr-nav, .hdr-right { display: none; }
  .hdr-burger { display: block; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-gallery { position: static; }
  .form-row, .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { padding-top: 80px; }
  .home-hero { height: 85vh; min-height: 480px; }
  .models-grid-4, .models-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .blog-card { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .usps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btns { flex-direction: column; }
  :root { --cont: 1rem; }
}
