
:root {
  --public-header-height: 100px;
  --public-event-height: 62px;
  --ink: #081014;
  --ink-soft: #0d171c;
  --panel: #121e23;
  --cream: #f5e8d8;
  --cream-soft: #d8c8b6;
  --gold: #d7a36d;
  --gold-bright: #ecc08d;
  --wine: #8e1820;
  --wine-bright: #b5212c;
  --line: rgba(232, 192, 141, 0.2);
  --background: var(--ink);
  --foreground: var(--cream);
  --card: var(--panel);
  --card-foreground: var(--cream);
  --popover: var(--panel);
  --popover-foreground: var(--cream);
  --primary: var(--wine);
  --primary-foreground: #fff;
  --secondary: #17242a;
  --secondary-foreground: var(--cream);
  --muted: #17242a;
  --muted-foreground: var(--cream-soft);
  --accent: var(--gold);
  --accent-foreground: var(--ink);
  --destructive: #e34b53;
  --border: var(--line);
  --input: var(--line);
  --ring: var(--gold);
  --radius: 0.8rem;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 5px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(86px, 10vw, 148px) 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; }
.section-heading h2, .jobs h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.section-heading__text {
  max-width: 630px;
  margin: 24px 0 0;
  color: var(--cream-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,16,20,.92);
  backdrop-filter: blur(18px);
  transition: background 250ms ease, box-shadow 250ms ease;
}
.site-header.is-scrolled { background: rgba(8,16,20,.975); box-shadow: 0 12px 38px rgba(0,0,0,.28); }
.site-header::after { position: absolute; right: 0; bottom: -1px; left: 0; width: var(--scroll-progress,0%); height: 1px; background: linear-gradient(90deg,var(--wine-bright),var(--gold-bright)); content: ""; pointer-events: none; }
.topline {
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(245,232,216,.68);
  font-size: .74rem;
  letter-spacing: .06em;
}
.topline__inner { display: flex; min-height: 30px; align-items: center; justify-content: flex-end; gap: 30px; }
.topline a { display: inline-flex; align-items: center; gap: 7px; transition: color 180ms ease; }
.topline a:hover { color: var(--gold-bright); }
.topline svg { width: 13px; height: 13px; }
.nav-wrap { display: flex; min-height: 70px; align-items: center; }
.brand {
  display: block;
  flex: 0 0 auto;
  width: 190px;
}
.brand img {
  width: 100%;
  height: auto;
}
.site-header .brand { width: 180px; height: 59px; overflow: hidden; }
.site-header .brand img { display: block; transform: translateY(-17px); }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 39px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: rgba(245,232,216,.78);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav a:hover { color: var(--cream); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
  padding: 12px 16px;
  background: var(--wine);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}
.nav-cta:hover { background: var(--wine-bright); transform: translateY(-2px); }
.nav-cta svg { width: 16px; }
.menu-button { display: none !important; margin-left: auto; color: var(--cream) !important; }
.mobile-sheet { border-color: var(--line) !important; background: var(--ink-soft) !important; color: var(--cream) !important; }
.mobile-sheet [data-slot="sheet-description"] { color: var(--gold); }
.mobile-nav { display: grid; padding: 24px 18px; }
.mobile-nav a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}
.mobile-nav a span { color: var(--gold); font-family: inherit; font-size: .68rem; }
.mobile-nav svg { width: 18px; }
.mobile-sheet__contact {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 25px 18px;
  border-top: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: .88rem;
}
.mobile-sheet__contact a { display: flex; gap: 10px; }
.mobile-sheet__contact svg { width: 16px; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--public-header-height) + 32px) 0 60px;
}
.hero__image, .hero__veil { position: absolute; inset: 0; }
.hero__image {
  display: block;
  overflow: hidden;
  transform: translate3d(0,var(--hero-shift,0),0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}
.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  background:
    linear-gradient(90deg, rgba(8,16,20,.78) 0%, rgba(8,16,20,.62) 38%, rgba(8,16,20,.12) 76%, rgba(8,16,20,.18) 100%),
    linear-gradient(0deg, rgba(8,16,20,.55), transparent 38%);
}
.hero-cities {
  position: absolute;
  top: calc(var(--public-header-height) + 14px);
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(1180px,calc(100% - 40px));
  justify-content: flex-end;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-cities__bar {
  display: flex;
  max-width: 100%;
  align-items: center;
  margin: 0;
  padding: 10px 15px;
  overflow: hidden;
  border: 1px solid rgba(245,232,216,.16);
  border-left: 2px solid rgba(181,33,44,.88);
  background: linear-gradient(105deg,rgba(8,16,20,.62),rgba(8,16,20,.38));
  box-shadow: 0 14px 34px rgba(0,0,0,.2),inset 0 1px rgba(255,255,255,.045);
  color: rgba(245,232,216,.64);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  font-size: clamp(.54rem,.7vw,.64rem);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-cities__bar>* { display: inline-flex; flex: 0 0 auto; align-items: center; }
.hero-cities__bar>*+*::before {
  width: 3px;
  height: 3px;
  margin: 0 11px;
  border-radius: 50%;
  background: rgba(245,232,216,.32);
  content: "";
}
.hero-cities__bar strong { color: var(--gold-bright); font-weight: 800; }
.hero-cities__bar strong::after {
  width: 4px;
  height: 4px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--wine-bright);
  box-shadow: 0 0 0 4px rgba(181,33,44,.14);
  content: "";
}
.hero::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) .55px, transparent .55px);
  background-size: 5px 5px;
  content: "";
  opacity: .2;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr) 280px;
  align-items: end;
  gap: 80px;
}
.hero__copy { max-width: 760px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(8,16,20,.46);
  color: rgba(245,232,216,.78);
  font-size: .75rem;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.status-pill span { width: 7px; height: 7px; border-radius: 99px; background: #58c986; box-shadow: 0 0 0 5px rgba(88,201,134,.12); }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.7vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .83;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold-bright); font-weight: 400; }
.hero__intro { max-width: 590px; margin: 34px 0 0; color: rgba(245,232,216,.76); font-size: clamp(1.05rem,2vw,1.25rem); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button svg { width: 17px; }
.button--primary { background: var(--wine); color: #fff; }
.button--primary:hover { background: var(--wine-bright); }
.button--quiet { border-color: rgba(245,232,216,.3); background: rgba(8,16,20,.32); color: var(--cream); backdrop-filter: blur(8px); }
.button--quiet:hover { border-color: var(--gold); }
.button--light { background: var(--cream); color: var(--ink); }
.hero-card { padding: 28px; border: 1px solid rgba(245,232,216,.18); background: rgba(8,16,20,.62); backdrop-filter: blur(12px); }
.hero-card > p { margin: 0 0 10px; color: var(--gold-bright); font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-card h2 { margin: 0; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; line-height: 1.1; }
.hero-card > span { display: block; margin-top: 11px; color: var(--cream-soft); font-size: .9rem; line-height: 1.5; }
.hero-card__line { height: 1px; margin: 23px 0 18px; background: var(--line); }
.hero-card a { display: flex; align-items: center; gap: 9px; color: var(--cream-soft); font-size: .78rem; }
.hero-card a:hover { color: var(--gold-bright); }
.hero-card svg { width: 15px; }
.hero__scroll {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,232,216,.52);
  font-size: .65rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll svg { width: 15px; }

.highlights { position: relative; z-index: 3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-soft); }
.highlights__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.highlight { display: flex; min-height: 145px; align-items: center; gap: 18px; padding: 28px; border-right: 1px solid var(--line); }
.highlight:first-child { border-left: 1px solid var(--line); }
.highlight > svg { flex: 0 0 auto; width: 27px; color: var(--gold); stroke-width: 1.4; }
.highlight h2 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 1.08rem; font-weight: 400; }
.highlight p { margin: 0; color: rgba(245,232,216,.58); font-size: .78rem; line-height: 1.45; }

.intro { background: radial-gradient(circle at 88% 14%, rgba(142,24,32,.14), transparent 31%), var(--ink); }
.intro__grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); align-items: center; gap: clamp(55px,8vw,120px); }
.intro__visual { position: relative; }
.intro__visual::before { position: absolute; inset: -18px 30px 30px -18px; border: 1px solid var(--line); content: ""; }
.intro__visual img { position: relative; width: 100%; aspect-ratio: .83; object-fit: cover; filter: saturate(.82) contrast(1.03); }
.intro__stamp {
  position: absolute;
  right: -25px;
  bottom: 36px;
  display: grid;
  min-width: 150px;
  min-height: 150px;
  place-content: center;
  border-radius: 50%;
  background: var(--wine);
  text-align: center;
  transform: rotate(-8deg);
}
.intro__stamp span { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.intro__stamp strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.intro__copy .section-heading h2 { font-size: clamp(2.8rem,5.5vw,5rem); }
.intro__copy > p { color: rgba(245,232,216,.68); line-height: 1.8; }
.intro__copy .lead { margin-top: 31px; color: var(--cream); font-family: Georgia, serif; font-size: 1.22rem; line-height: 1.65; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); color: var(--cream-soft); font-size: .74rem; }
.trust-row svg { width: 15px; color: var(--gold); }

.girls { border-top: 1px solid var(--line); background: var(--ink-soft); }
.girls__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.girls__top .section-heading { flex: 1 1 900px; max-width: 900px; }
.girls__top .section-heading h2 { font-size: clamp(2.55rem,5vw,4.9rem); }
.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link svg { width: 15px; }
.girls-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.girl-card {
  position: relative;
  display: grid;
  min-height: 235px;
  align-content: space-between;
  overflow: hidden;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  transition: background 200ms ease;
}
.girl-card:hover { background: rgba(215,163,109,.07); }
.girl-card__number { color: rgba(245,232,216,.35); font-size: .65rem; letter-spacing: .15em; }
.girl-card__monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(215,163,109,.065);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  transform: translate(-50%,-50%);
  transition: color 200ms ease, transform 300ms ease;
  user-select: none;
}
.girl-card:hover .girl-card__monogram { color: rgba(215,163,109,.11); transform: translate(-50%,-50%) scale(1.06); }
.girl-card h3 { position: relative; z-index: 1; margin: 0; font-family: Georgia, serif; font-size: 1.72rem; font-weight: 400; }
.girl-card p { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin: 8px 0 0; color: rgba(245,232,216,.5); font-size: .73rem; }
.girl-card p span { width: 6px; height: 6px; border-radius: 50%; background: #58c986; }
.upcoming { margin-top: 105px; }
.upcoming__heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.upcoming__heading .eyebrow { margin-bottom: 8px; }
.upcoming__heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem,4vw,3.6rem); font-weight: 400; }
.upcoming__heading > svg { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.2; }
.upcoming-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.arrival-card { position: relative; min-height: 350px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #17242a; }
.arrival-card img, .arrival-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.arrival-card img { object-fit: cover; object-position: center top; filter: saturate(.84); transition: transform 500ms ease, filter 300ms ease; }
.arrival-card:hover img { filter: saturate(1); transform: scale(1.045); }
.arrival-card__shade { background: linear-gradient(0deg, rgba(8,16,20,.96), transparent 62%); }
.arrival-card__content { position: absolute; inset: auto 17px 17px; }
.arrival-card__content span { color: var(--gold-bright); font-size: .65rem; font-weight: 700; letter-spacing: .13em; }
.arrival-card__content h4 { margin: 5px 0 2px; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.arrival-card__content p { margin: 0; color: rgba(245,232,216,.6); font-size: .72rem; }

.gallery { background: radial-gradient(circle at 15% 0%, rgba(142,24,32,.12), transparent 30%), var(--ink); }
.gallery .section-heading { margin-bottom: 56px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2,280px); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; background: var(--panel); }
.gallery-item--1 { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.03); transition: filter 350ms ease, transform 600ms ease; }
.gallery-item:hover img { filter: saturate(1); transform: scale(1.025); }

.visit { border-top: 1px solid var(--line); background: var(--ink-soft); }
.visit__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(55px,9vw,130px); }
.visit__copy > p { max-width: 640px; margin: 32px 0; color: var(--cream-soft); font-size: 1.05rem; line-height: 1.75; }
.visit__facts { display: grid; gap: 16px; margin-bottom: 36px; }
.visit__facts > div { display: flex; align-items: center; gap: 16px; }
.visit__facts svg { flex: 0 0 auto; width: 24px; color: var(--gold); stroke-width: 1.4; }
.visit__facts span { display: grid; color: rgba(245,232,216,.58); font-size: .84rem; line-height: 1.5; }
.visit__facts strong { color: var(--cream); font-weight: 600; }
.address-card {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  grid-template-rows: minmax(285px,1fr) auto;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--wine);
  box-shadow: 0 28px 65px rgba(0,0,0,.22);
  transition: transform 200ms ease;
}
.address-card:hover { transform: translateY(-5px); }
.address-card__map-wrap { position: relative; min-height: 285px; background: #111d22; }
.address-card__map { width: 100%; height: 100%; min-height: 285px; border: 0; filter: saturate(.72) contrast(1.04); }
.address-card__map-consent { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; padding: 30px; background: radial-gradient(circle at 50% 20%,rgba(215,163,109,.11),transparent 42%),#111d22; text-align: center; }
.address-card__map-consent svg { width: 31px; margin-bottom: 15px; color: var(--gold); }
.address-card__map-consent strong { font-family: Georgia,serif; font-size: 1.25rem; font-weight: 400; }
.address-card__map-consent p { max-width: 330px; margin: 10px 0 18px; color: rgba(245,232,216,.58); font-size: .8rem; line-height: 1.55; }
.address-card__map-consent button { padding: 12px 17px; border: 1px solid var(--gold); background: transparent; color: var(--gold-bright); font: inherit; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.address-card__map-consent button:hover { background: var(--gold); color: var(--ink); }
.address-card__details { padding: 31px 34px 34px; background: linear-gradient(135deg,#9c1d28,#711019); }
.address-card__details > span { display: block; margin-bottom: 13px; color: var(--gold-bright); font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.address-card__details address { font-style: normal; }
.address-card__details h3 { margin: 0; font-family: Georgia,serif; font-size: clamp(1.5rem,2.35vw,2.15rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; white-space: nowrap; }
.address-card__city { margin: 10px 0 0; color: #fff; font-size: .98rem; font-weight: 700; letter-spacing: .025em; }
.address-card__note { margin: 5px 0 0; color: rgba(255,255,255,.68); font-size: .78rem; line-height: 1.45; }

.faq { border-top: 1px solid var(--line); background: var(--ink); }
.faq__grid { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr); gap: clamp(55px,8vw,115px); align-items: start; }
.faq__items { border-top: 1px solid var(--line); }
.faq__items details { border-bottom: 1px solid var(--line); }
.faq__items summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; list-style: none; cursor: pointer; }
.faq__items summary::-webkit-details-marker { display: none; }
.faq__items summary h3 { margin: 0; font-family: Georgia,serif; font-size: clamp(1.08rem,2vw,1.35rem); font-weight: 400; line-height: 1.35; }
.faq__items summary > span { flex: 0 0 auto; color: var(--gold-bright); font-size: 1.55rem; font-weight: 200; transition: transform 180ms ease; }
.faq__items details[open] summary > span { transform: rotate(45deg); }
.faq__items details > p { max-width: 720px; margin: -5px 0 25px; color: rgba(245,232,216,.68); font-size: 1rem; line-height: 1.72; }

.jobs { position: relative; display: grid; min-height: 650px; place-items: center; overflow: hidden; text-align: center; }
.jobs__image, .jobs__overlay { position: absolute; inset: 0; }
.jobs__image { background-position: center 35%; background-size: cover; transform: translate3d(0,var(--jobs-shift,0),0) scale(1.1); will-change: transform; }
.jobs__overlay { background: rgba(8,16,20,.8); }
.jobs__content { position: relative; z-index: 1; max-width: 800px; }
.jobs__content > p:not(.eyebrow) { max-width: 610px; margin: 27px auto 34px; color: rgba(245,232,216,.72); font-size: 1.08rem; line-height: 1.75; }

.motion-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0,30px,0);
  transition: opacity 720ms cubic-bezier(.22,1,.36,1), transform 720ms cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay,0ms);
  will-change: opacity,transform;
}
.motion-ready .scroll-reveal--left { transform: translate3d(-34px,0,0); }
.motion-ready .scroll-reveal--right { transform: translate3d(34px,0,0); }
.motion-ready .scroll-reveal--scale { transform: translate3d(0,18px,0) scale(.965); }
.motion-ready .scroll-reveal.is-visible { opacity: 1; transform: translate3d(0,0,0) scale(1); will-change: auto; }
.address-card.scroll-reveal.is-visible:hover { transform: translateY(-5px); }

.footer { padding: 80px 0 28px; border-top: 1px solid var(--line); background: #050b0e; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr .65fr; gap: 60px; }
.footer .brand { width: 210px; }
.footer__brand p { max-width: 290px; margin: 24px 0 0; color: rgba(245,232,216,.48); line-height: 1.7; }
.footer__label { margin: 2px 0 20px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer address, .footer__grid > div:not(.footer__brand) a { display: block; color: rgba(245,232,216,.65); font-size: .88rem; font-style: normal; line-height: 1.9; }
.footer__grid > div:not(.footer__brand) a:hover { color: var(--gold-bright); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); color: rgba(245,232,216,.3); font-size: .68rem; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer__legal a, .footer__legal button { padding: 0; border: 0; background: transparent; color: rgba(245,232,216,.48); font: inherit; cursor: pointer; }
.footer__legal a:hover, .footer__legal button:hover { color: var(--gold-bright); }

.cookie-consent { position: fixed; z-index: 200; right: max(16px,env(safe-area-inset-right)); bottom: max(16px,env(safe-area-inset-bottom)); left: max(16px,env(safe-area-inset-left)); width: min(700px,calc(100% - 32px)); max-height: calc(100svh - 32px); margin-left: auto; overflow-y: auto; padding: clamp(18px,2.6vw,25px); border: 1px solid rgba(236,192,141,.38); background: rgba(13,23,28,.985); color: var(--cream); box-shadow: 0 22px 68px rgba(0,0,0,.54); opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity 180ms ease,visibility 180ms ease,transform 180ms ease; }
.cookie-consent.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-consent__close { position: absolute; top: 13px; right: 17px; padding: 0; border: 0; background: transparent; color: var(--cream-soft); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.cookie-consent .eyebrow { margin-bottom: 6px; font-size: .6rem; }
.cookie-consent h2 { max-width: 610px; margin: 0; font-family: Georgia,serif; font-size: clamp(1.35rem,2.6vw,1.8rem); font-weight: 400; line-height: 1.08; }
.cookie-consent__summary > p:not(.eyebrow), .cookie-consent__details { max-width: 620px; margin: 9px 0 5px; color: rgba(245,232,216,.67); font-size: .82rem; line-height: 1.48; }
.cookie-consent a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 15px; }
.cookie-button { min-height: 42px; padding: 9px 12px; border: 1px solid var(--line); font: inherit; font-size: .68rem; font-weight: 700; letter-spacing: .035em; cursor: pointer; }
.cookie-button--quiet { background: transparent; color: var(--cream); }
.cookie-button--quiet:hover { border-color: var(--gold); }
.cookie-button--primary { border-color: var(--wine); background: var(--wine); color: #fff; }
.cookie-button--primary:hover { background: var(--wine-bright); }
.cookie-options { display: grid; gap: 1px; margin-top: 15px; background: var(--line); }
.cookie-options label { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 14px; background: #111d22; cursor: pointer; }
.cookie-options label:first-child { cursor: default; }
.cookie-options label > span { display: grid; gap: 4px; }
.cookie-options strong { font-size: .86rem; }
.cookie-options small { color: rgba(245,232,216,.55); font-size: .75rem; line-height: 1.45; }
.cookie-options input { width: 21px; height: 21px; flex: 0 0 auto; accent-color: var(--wine-bright); }
.cookie-options input:disabled { opacity: .58; }

.legal-page { min-height: 70svh; padding: 165px 0 105px; background: radial-gradient(circle at 85% 10%,rgba(142,24,32,.12),transparent 28%),var(--ink); }
.legal-page__intro { max-width: 820px; margin-bottom: 55px; }
.legal-page h1 { margin: 0; font-family: Georgia,serif; font-size: clamp(3.3rem,8vw,6.8rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.legal-page__intro > p:last-child { max-width: 670px; margin: 25px 0 0; color: var(--cream-soft); font-size: 1rem; line-height: 1.7; }
.legal-grid { display: grid; grid-template-columns: minmax(240px,.72fr) minmax(0,1.45fr); gap: clamp(45px,8vw,105px); }
.legal-grid article { padding-top: 31px; border-top: 1px solid var(--line); }
.legal-grid h2 { margin: 0 0 22px; font-family: Georgia,serif; font-size: 2rem; font-weight: 400; }
.legal-grid h3 { margin: 31px 0 9px; color: var(--gold-bright); font-size: .82rem; letter-spacing: .06em; }
.legal-grid p, .legal-grid li, .legal-grid address { color: rgba(245,232,216,.67); font-size: .88rem; font-style: normal; line-height: 1.72; }
.legal-grid ul { padding-left: 19px; }
.legal-grid a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

.age-gate {
  max-width: 560px !important;
  padding: 38px !important;
  border-color: var(--line) !important;
  border-radius: 0 !important;
  background: var(--ink-soft) !important;
  color: var(--cream) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.56) !important;
}
[data-slot="dialog-overlay"] { background: rgba(2,7,9,.88) !important; backdrop-filter: blur(14px); }
.age-gate__mark { display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-family: Georgia, serif; font-size: 1.55rem; }
.age-gate__header { margin: 12px 0 5px; }
.age-gate__header [data-slot="dialog-title"] { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.age-gate__header [data-slot="dialog-description"] { margin-top: 8px; color: var(--cream-soft); font-size: .96rem; line-height: 1.65; }
.age-gate__remember { display: flex; align-items: center; gap: 10px; color: rgba(245,232,216,.58); font-size: .8rem; }
.age-gate__remember [data-slot="checkbox"] { border-color: var(--line); }
.age-gate__actions { display: grid !important; grid-template-columns: 1fr 1fr; margin-top: 10px; }
.age-gate__actions button { min-height: 48px; border-radius: 0; font-size: .72rem; }
.age-gate__actions button:first-child { border-color: var(--line); background: transparent; color: var(--cream-soft); }

@media (max-width: 1080px) {
  .site-header .brand { width: 165px; height: 54px; }
  .site-header .brand img { transform: translateY(-15px); }
  .desktop-nav { gap: 20px; }
  .nav-cta { display: none; }
  .hero__content { grid-template-columns: 1fr 250px; gap: 45px; }
  .arrival-card { min-height: 420px; }
  .highlight { padding: 25px 17px; }
}

@media (max-width: 860px) {
  :root { --public-header-height: 62px; }
  .topline, .desktop-nav { display: none; }
  .nav-wrap { min-height: 62px; }
  .site-header .brand { width: 150px; height: 49px; }
  .site-header .brand img { transform: translateY(-14px); }
  .menu-button { display: inline-flex !important; }
  .hero { min-height: 900px; align-items: flex-end; padding-bottom: 82px; }
  .hero-cities { top: calc(var(--public-header-height) + 12px); justify-content: center; }
  .hero-cities__bar { padding: 9px 12px; letter-spacing: .1em; }
  .hero__image img { object-position: 63% center; }
  .hero__veil {
    background:
      linear-gradient(0deg,rgba(8,16,20,.98) 9%,rgba(8,16,20,.76) 56%,rgba(8,16,20,.2) 100%),
      linear-gradient(90deg,rgba(8,16,20,.6),transparent);
  }
  .hero__content { grid-template-columns: 1fr; }
  .hero-card, .hero__scroll { display: none; }
  .highlights__grid { grid-template-columns: repeat(2,1fr); }
  .highlight:nth-child(3) { border-left: 1px solid var(--line); }
  .intro__grid, .visit__grid { grid-template-columns: 1fr; }
  .intro__visual { width: min(90%,580px); }
  .intro__visual img { aspect-ratio: 1.05; }
  .girls-grid, .upcoming-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-rows: repeat(2,220px); }
  .address-card { min-height: 420px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 590px) {
  :root { --public-header-height: 60px; --public-event-height: 68px; }
  .shell { width: min(100% - 28px,1180px); }
  .section { padding: 82px 0; }
  .nav-wrap { min-height: 60px; }
  .brand { width: 145px; }
  .site-header .brand { width: 138px; height: 45px; }
  .site-header .brand img { transform: translateY(-13px); }
  .hero { min-height: 780px; padding: calc(var(--public-header-height) + 40px) 0 54px; }
  .hero-cities { top: calc(var(--public-header-height) + 10px); width: min(100% - 28px,1180px); }
  .hero-cities__bar { padding: 8px 10px; font-size: .54rem; letter-spacing: .075em; }
  .hero-cities__bar>*+*::before { margin-inline: 8px; }
  .hero__image img { object-position: 68% center; }
  .status-pill { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(3.55rem,18vw,5.3rem); line-height: .86; }
  .hero__intro { margin-top: 26px; font-size: 1rem; line-height: 1.6; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .highlights__grid { grid-template-columns: 1fr; }
  .highlight { min-height: 105px; padding: 22px 18px; border-left: 1px solid var(--line); }
  .intro__visual { width: calc(100% - 15px); margin-left: 15px; }
  .intro__visual img { aspect-ratio: .9; }
  .intro__stamp { right: -8px; bottom: 20px; min-width: 116px; min-height: 116px; }
  .intro__stamp strong { font-size: 1.08rem; }
  .girls__top { display: block; }
  .text-link { margin-top: 24px; }
  .girls-grid { grid-template-columns: repeat(2,1fr); margin-top: 40px; }
  .girl-card { min-height: 180px; padding: 18px; }
  .girl-card__monogram { font-size: 7rem; }
  .girl-card h3 { font-size: 1.35rem; }
  .girl-card p { font-size: .65rem; }
  .upcoming { margin-top: 75px; }
  .upcoming__heading > svg { display: none; }
  /* v3.0.50 – kein Wisch-Karussell mehr: gleiches zweispaltiges Raster wie "Im Haus",
     die Sektion scrollt mit der Seite statt seitlich. */
  .upcoming-grid { grid-template-columns: repeat(2,1fr); }
  .arrival-card { min-height: 260px; }
  .arrival-card__content { inset: auto 13px 13px; }
  .arrival-card__content span { font-size: .58rem; letter-spacing: .1em; }
  .arrival-card__content h4 { font-size: 1.2rem; }
  .arrival-card__content p { font-size: .64rem; }
  .arrival-card__new { top: 10px; left: 10px; padding: 5px 8px; font-size: .55rem; }
  .arrival-card__placeholder { font-size: 7rem; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 430px 240px 240px; }
  .gallery-item--1 { grid-row: auto; }
  .address-card { min-height: 0; grid-template-rows: 315px auto; }
  .address-card__details { padding: 27px; }
  .address-card__details h3 { font-size: clamp(1.3rem,7vw,1.55rem); }
  .jobs { min-height: 600px; padding: 75px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { display: grid; gap: 8px; }
  .footer__legal { justify-content: flex-start; }
  .faq__grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .age-gate { padding: 27px !important; }
  .age-gate__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__image, .jobs__image { transform: scale(1.02); will-change: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Admin scaffold: read-only until authentication and storage are connected. */
.admin-shell { min-height: 100svh; background: #f2f0ec; color: #182024; }
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  width: 250px;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 22px 24px;
  background: #0d171c;
  color: #f5e8d8;
}
.admin-brand { margin: 0 10px 48px; font-family: Georgia,serif; font-size: 1.45rem; letter-spacing: .08em; }
.admin-brand span { color: var(--gold); }
.admin-label { margin: 0 10px 12px; color: rgba(245,232,216,.36); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.admin-sidebar nav {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  gap: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(215,163,109,.42) transparent;
}
.admin-sidebar nav::-webkit-scrollbar { width: 6px; }
.admin-sidebar nav::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar nav::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(215,163,109,.42); }
.admin-sidebar nav::-webkit-scrollbar-thumb:hover { background: rgba(236,192,141,.62); }
.admin-sidebar nav > span { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border-radius: 7px; color: rgba(245,232,216,.58); font-size: .82rem; }
.admin-sidebar nav > span.active { background: rgba(215,163,109,.12); color: var(--gold-bright); }
.admin-sidebar nav svg { width: 17px; }
.admin-sidebar__foot { display: flex; align-items: flex-start; gap: 12px; margin-top: auto; padding: 18px 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.admin-sidebar__foot svg { flex: 0 0 auto; width: 17px; color: var(--gold); }
.admin-sidebar__foot span { display: grid; color: rgba(245,232,216,.42); font-size: .68rem; line-height: 1.45; }
.admin-sidebar__foot strong { color: rgba(245,232,216,.8); font-size: .72rem; }
.admin-main { margin-left: 250px; padding: 40px clamp(22px,4vw,60px) 70px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.admin-topbar p, .admin-panel header p { margin: 0 0 4px; color: #a36f3d; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.admin-topbar h1 { margin: 0; font-family: Georgia,serif; font-size: 2.3rem; font-weight: 400; }
.admin-preview-badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #d8d2c9; border-radius: 99px; background: #fff; color: #6f6d68; font-size: .7rem; }
.admin-preview-badge svg { width: 12px; color: #bf813f; }
.admin-notice { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 23px; padding: 17px 19px; border: 1px solid #e1c99f; border-radius: 10px; background: #fff8e9; color: #5f4c2d; }
.admin-notice svg { flex: 0 0 auto; width: 19px; }
.admin-notice strong { font-size: .86rem; }
.admin-notice p { margin: 4px 0 0; color: #796b53; font-size: .76rem; line-height: 1.5; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.admin-stats article { display: flex; min-height: 116px; align-items: center; gap: 15px; padding: 20px; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.admin-stats article > svg { width: 22px; color: #a36f3d; }
.admin-stats article div { display: grid; }
.admin-stats strong { font-family: Georgia,serif; font-size: 1.7rem; font-weight: 400; }
.admin-stats span { color: #85817b; font-size: .7rem; }
.admin-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.admin-panel { overflow: hidden; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.admin-panel > header { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid #ebe8e3; }
.admin-panel header h2 { margin: 0; font-family: Georgia,serif; font-size: 1.25rem; font-weight: 400; }
.admin-panel header > span { display: flex; align-items: center; gap: 5px; color: #8d765c; font-size: .68rem; }
.admin-panel header > span svg, .admin-panel header > svg { width: 17px; color: #a36f3d; }
.admin-list > div, .admin-arrivals > div { display: flex; min-height: 67px; align-items: center; gap: 12px; padding: 9px 22px; border-bottom: 1px solid #efede9; }
.admin-list > div:last-child, .admin-arrivals > div:last-child { border-bottom: 0; }
.admin-avatar { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; background: #f0e4d5; color: #8e5d31; font-family: Georgia,serif; }
.admin-list > div > div, .admin-arrivals > div > div { display: grid; }
.admin-list strong, .admin-arrivals strong { font-size: .78rem; }
.admin-list small, .admin-arrivals small { display: flex; align-items: center; gap: 6px; color: #98948e; font-size: .65rem; }
.admin-list small i { width: 5px; height: 5px; border-radius: 50%; background: #3eb471; }
.admin-list__action { margin-left: auto; color: #9c7a55; font-size: .65rem; }
.admin-arrivals img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; object-position: center top; }
.admin-arrivals time { margin-left: auto; color: #8a8177; font-size: .66rem; }
.admin-content-panel { margin-top: 20px; }
.admin-content-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.admin-content-grid > div { position: relative; display: grid; min-height: 115px; align-content: center; padding: 20px; border-right: 1px solid #ebe8e3; border-bottom: 1px solid #ebe8e3; }
.admin-content-grid > div:nth-child(3n) { border-right: 0; }
.admin-content-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
.admin-content-grid span { margin-bottom: 6px; color: #b79a78; font-size: .58rem; }
.admin-content-grid strong { font-family: Georgia,serif; font-size: .96rem; font-weight: 400; }
.admin-content-grid small { color: #a5a09a; font-size: .62rem; }
.admin-content-grid svg { position: absolute; right: 15px; bottom: 15px; width: 14px; color: #aa8e70; }

@media (max-width: 900px) {
  .admin-sidebar { position: static; width: 100%; height: auto; max-height: none; overflow: visible; padding: 18px; }
  .admin-brand { margin: 0 0 18px; }
  .admin-label, .admin-sidebar__foot { display: none; }
  .admin-sidebar nav { display: flex; flex: 0 0 auto; min-height: auto; overflow-x: auto; overflow-y: hidden; padding-right: 0; }
  .admin-sidebar nav > span { flex: 0 0 auto; }
  .admin-main { margin-left: 0; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .admin-main { padding: 28px 14px 50px; }
  .admin-topbar { align-items: flex-start; }
  .admin-preview-badge { max-width: 125px; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .admin-stats article { min-height: 100px; display: grid; gap: 5px; padding: 14px; }
  .admin-content-grid { grid-template-columns: 1fr 1fr; }
  .admin-content-grid > div:nth-child(3n) { border-right: 1px solid #ebe8e3; }
  .admin-content-grid > div:nth-child(2n) { border-right: 0; }
  .admin-content-grid > div:nth-last-child(-n+3) { border-bottom: 1px solid #ebe8e3; }
  .admin-content-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
}


/* PHP-only controls */
svg { width: 1.15em; height: 1.15em; }
.menu-button-php {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}
.menu-button-php span { width: 23px; height: 1px; background: currentColor; }
.mobile-menu-php {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--ink-soft);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 220ms ease, transform 280ms ease, visibility 220ms ease;
}
.mobile-menu-php.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu-php__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-php__top strong { font-family: Georgia,serif; font-size: 1.5rem; letter-spacing: .08em; }
.mobile-menu-php__top .ici-wordmark { letter-spacing: .045em; }
.mobile-menu-php__top button { border: 0; background: transparent; color: var(--cream); font-size: 2.2rem; line-height: 1; cursor: pointer; }
.mobile-menu-php nav { display: grid; margin-top: 45px; }
.mobile-menu-php nav a { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: Georgia,serif; font-size: 1.65rem; }
.mobile-menu-php nav a > span { color: var(--gold); font-family: Arial,sans-serif; font-size: .66rem; }
.mobile-menu-php nav svg { width: 18px; }
.mobile-menu-php__contact { display: grid; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--cream-soft); font-size: .85rem; }
.mobile-menu-php__contact a { display: flex; align-items: center; gap: 9px; }
.age-overlay { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 16px; overflow-y: auto; background: rgba(2,7,9,.9); backdrop-filter: blur(14px); }
.age-overlay.is-open { display: grid; }
.age-gate__header h2 { margin: 0; font-family: Georgia,serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.age-gate__header p { margin: 12px 0 0; color: var(--cream-soft); font-size: .96rem; line-height: 1.65; }
.age-gate__remember input { width: 17px; height: 17px; accent-color: var(--wine); }
.age-button { min-height: 48px; padding: 10px 17px; border-radius: 0; font-size: .72rem; font-weight: 700; cursor: pointer; }
.age-button--quiet { border: 1px solid var(--line); background: transparent; color: var(--cream-soft); }
.age-button--primary { border: 1px solid var(--wine); background: var(--wine); color: #fff; }
.admin-sidebar nav > span { cursor: default; }
body.menu-open { overflow: hidden; }
@media (max-width: 860px) {
  .menu-button-php { display: inline-flex; }
}
@media (max-width: 590px) {
  .age-gate__actions { display: grid !important; }
}

/* Datenbankgestützte Profilkarten */
[hidden] { display: none !important; }
.profile-filters { display: grid; grid-template-columns: 1.4fr repeat(3,1fr) auto; align-items: end; gap: 10px; margin-top: 46px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.profile-filters label { display: grid; gap: 7px; }
.profile-filters label span { color: rgba(245,232,216,.42); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.profile-filters input, .profile-filters select { width: 100%; min-height: 44px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 0; outline: none; background: #101c21; color: var(--cream); font: inherit; font-size: .78rem; }
.profile-filters input:focus, .profile-filters select:focus { border-color: var(--gold); }
.profile-filters button { min-height: 44px; padding: 9px 13px; border: 1px solid var(--line); background: transparent; color: var(--gold-bright); font: inherit; font-size: .68rem; cursor: pointer; }
.profile-filters > p { grid-column: 1 / -1; margin: 4px 0 0; color: rgba(245,232,216,.42); font-size: .7rem; }
.profile-filters + .girls-grid { margin-top: 14px; }
.girl-card--image { min-height: 330px; }
.girl-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.88); transition: transform 450ms ease, filter 250ms ease; }
.girl-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,16,20,.97),rgba(8,16,20,.05) 70%); }
.girl-card--image:hover .girl-card__image { filter: saturate(1); transform: scale(1.035); }
.girl-card__number, .girl-card__content { position: relative; z-index: 2; }
.arrival-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(215,163,109,.16); font-family: Georgia,serif; font-size: 11rem; }

/* Öffentliche Profilseite */
.profile-site-header { position: absolute; }
.profile-page { min-height: 70vh; }
.profile-hero { padding: calc(var(--public-header-height) + 50px) 0 90px; background: radial-gradient(circle at 68% 34%,rgba(142,24,32,.18),transparent 42%),var(--ink); }
.profile-hero__grid { display: grid; grid-template-columns: minmax(310px,.82fr) 1fr; align-items: center; gap: clamp(55px,8vw,120px); }
.profile-portrait { position: relative; min-height: 690px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.profile-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,16,20,.65),transparent 42%); pointer-events: none; }
.profile-portrait__image-button { position: relative; display: block; width: 100%; height: 690px; padding: 0; overflow: hidden; border: 0; background: transparent; color: #fff; cursor: zoom-in; }
.profile-portrait__image-button img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 450ms ease; }
.profile-portrait__image-button:hover img { transform: scale(1.018); }
.profile-portrait__image-button > span { position: absolute; z-index: 2; top: 22px; right: 22px; padding: 9px 12px; background: rgba(8,16,20,.78); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transition: opacity 180ms ease; }
.profile-portrait__image-button:hover > span, .profile-portrait__image-button:focus-visible > span { opacity: 1; }
.profile-portrait > span:first-child { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(215,163,109,.15); font-family: Georgia,serif; font-size: 18rem; }
.profile-portrait__status { position: absolute; z-index: 2; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(8,16,20,.84); font-size: .72rem; }
.profile-portrait__status i { width: 7px; height: 7px; border-radius: 50%; background: #58c986; }
.profile-back { display: inline-block; margin-bottom: 50px; color: rgba(245,232,216,.55); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.profile-hero__copy h1 { margin: 0; font-family: Georgia,serif; font-size: clamp(4.5rem,10vw,8.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .82; }
.profile-tagline { max-width: 660px; margin: 35px 0 0; color: var(--cream-soft); font-family: Georgia,serif; font-size: clamp(1.2rem,2.2vw,1.65rem); font-style: italic; line-height: 1.55; }
.profile-summary { max-width: 680px; margin: 28px 0 0; color: rgba(245,232,216,.68); font-size: 1rem; line-height: 1.72; }
.profile-tagline + .profile-summary { margin-top: 17px; }
.profile-bio { max-width: 680px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--cream-soft); font-size: 1rem; line-height: 1.72; }
.profile-arrival, .profile-schedule { margin-top: 30px; padding: 18px 20px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.035); }
.profile-arrival { display: flex; align-items: center; gap: 14px; }
.profile-arrival svg { width: 23px; color: var(--gold); }
.profile-arrival span { display: grid; color: rgba(245,232,216,.58); font-size: .8rem; }
.profile-arrival strong { color: var(--cream); font-size: .95rem; }
.profile-schedule small { color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.profile-schedule p { margin: 7px 0 0; color: var(--cream-soft); line-height: 1.65; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.profile-price { margin: 23px 0 0; color: rgba(245,232,216,.48); }
.profile-price strong { color: var(--gold-bright); font-family: Georgia,serif; font-size: 1.45rem; font-weight: 400; }
.profile-facts { border-top: 1px solid var(--line); background: var(--ink-soft); }
.profile-facts dl { display: grid; grid-template-columns: repeat(4,1fr); margin: 58px 0 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.profile-facts dl > div { min-height: 130px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-facts dt { color: rgba(245,232,216,.42); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.profile-facts dd { margin: 15px 0 0; font-family: Georgia,serif; font-size: 1.45rem; }
.profile-services { border-top: 1px solid var(--line); }
.profile-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 55px; }
.profile-service-grid article { padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.profile-service-grid h3 { margin: 0 0 24px; font-family: Georgia,serif; font-size: 1.7rem; font-weight: 400; }
.profile-service-grid ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: var(--cream-soft); font-size: .88rem; }
.profile-service-grid li { display: flex; align-items: flex-start; gap: 10px; }
.profile-service-grid li span { display: inline-flex; width: 18px; flex: 0 0 18px; align-items: center; justify-content: center; font-weight: 800; line-height: 1.2; }
.profile-service-grid .service-state--yes { color: #58c986; }
.profile-service-grid .service-state--no { color: #e0525d; font-size: 1.08em; }
.profile-service-grid .service-not-offered { color: rgba(244,239,230,.68); }

.profile-mobile-media { display: none; }
.profile-gallery { border-top: 1px solid var(--line); background: var(--ink-soft); }
.profile-gallery__slider { margin-top: 50px; }
.profile-gallery__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.profile-gallery__grid button { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; padding: 0; overflow: hidden; border: 0; background: var(--panel); color: #fff; cursor: zoom-in; }
.profile-gallery__grid img { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center top; transition: filter 220ms ease, transform 450ms ease; }
.profile-gallery__grid button:hover img { filter: brightness(.72); transform: scale(1.025); }
.profile-gallery__grid button > span { position: absolute; inset: 50% auto auto 50%; padding: 9px 12px; border: 1px solid rgba(255,255,255,.45); background: rgba(8,16,20,.72); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translate(-50%,-40%); transition: opacity 180ms ease, transform 180ms ease; }
.profile-gallery__grid button:hover > span, .profile-gallery__grid button:focus-visible > span { opacity: 1; transform: translate(-50%,-50%); }
.profile-gallery__controls { display: none; }
.profile-gallery__dots { display: flex; align-items: center; justify-content: center; gap: 7px; }
.profile-gallery__dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(245,232,216,.25); cursor: pointer; transition: width 180ms ease, border-radius 180ms ease, background 180ms ease; }
.profile-gallery__dots button.is-active { width: 22px; border-radius: 99px; background: var(--gold-bright); }
.profile-gallery__counter { min-width: 42px; color: rgba(245,232,216,.6); font-size: .7rem; text-align: center; font-variant-numeric: tabular-nums; }
.profile-gallery__arrow { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--cream); font: inherit; font-size: 1.7rem; line-height: 1; cursor: pointer; transition: border-color 180ms ease, opacity 180ms ease, background 180ms ease; }
.profile-gallery__arrow:disabled { opacity: .28; cursor: default; }
.profile-gallery__arrow:not(:disabled):hover { border-color: rgba(215,163,109,.55); background: rgba(215,163,109,.07); }
.profile-switcher { display: grid; grid-template-columns: 1fr 1fr; padding-top: 22px; padding-bottom: 22px; }
.profile-switcher a { display: grid; gap: 8px; min-height: 112px; align-content: center; padding: 24px 30px; border: 1px solid var(--line); background: rgba(255,255,255,.02); transition: border-color 180ms ease, background 180ms ease; }
.profile-switcher a:last-child { justify-items: end; border-left: 0; text-align: right; }
.profile-switcher a:hover { border-color: rgba(215,163,109,.48); background: rgba(215,163,109,.06); }
.profile-switcher small { color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.profile-switcher strong { font-family: Georgia,serif; font-size: clamp(1.45rem,3vw,2.15rem); font-weight: 400; }
.profile-lightbox { position: fixed; inset: 0; z-index: 150; display: grid; grid-template-columns: 80px minmax(0,1fr) 80px; align-items: center; padding: 34px; background: rgba(2,7,9,.96); opacity: 0; visibility: hidden; transition: opacity 180ms ease, visibility 180ms ease; }
.profile-lightbox.is-open { opacity: 1; visibility: visible; }
.profile-lightbox figure { display: grid; max-width: min(92vw,1050px); max-height: calc(100vh - 68px); justify-self: center; margin: 0; }
.profile-lightbox figure img { max-width: 100%; max-height: calc(100vh - 125px); margin: auto; object-fit: contain; }
.profile-lightbox figcaption { display: flex; justify-content: space-between; gap: 25px; padding-top: 13px; color: rgba(245,232,216,.62); font-size: .75rem; }
.profile-lightbox button { border: 0; background: transparent; color: #fff; cursor: pointer; }
.profile-lightbox__close { position: absolute; z-index: 2; top: 18px; right: 23px; width: 50px; height: 50px; font-size: 2.3rem; font-weight: 200; line-height: 1; }
.profile-lightbox__previous, .profile-lightbox__next { display: grid; width: 62px; height: 62px; place-items: center; justify-self: center; border: 1px solid rgba(255,255,255,.2) !important; font-size: 2.8rem; line-height: 1; }
.profile-lightbox.is-single .profile-lightbox__previous, .profile-lightbox.is-single .profile-lightbox__next { display: none; }
body.lightbox-open { overflow: hidden; }
.profile-contact { padding: 110px 0; text-align: center; background: var(--wine); }
.profile-contact h2 { margin: 0; font-family: Georgia,serif; font-size: clamp(3rem,7vw,6rem); font-weight: 400; }
.profile-contact > .shell > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.profile-contact .profile-actions { justify-content: center; }
.profile-missing { min-height: 75vh; padding-top: 230px; }
.profile-missing h1 { margin: 0 0 25px; font-family: Georgia,serif; font-size: clamp(3rem,7vw,6rem); font-weight: 400; }
.profile-missing > p:not(.eyebrow) { max-width: 650px; color: var(--cream-soft); }
.profile-missing .button { margin-top: 25px; }

/* Funktionale Adminkonsole */
.admin-body { background: #f2f0ec; color: #182024; }
.admin-auth-wrap { display: grid; min-height: 100svh; place-items: center; padding: 30px 16px; background: radial-gradient(circle at top,#24343b,#091318 60%); color: #182024; }
.admin-auth-card { width: min(100%,500px); padding: clamp(30px,6vw,55px); border-top: 3px solid var(--gold); background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.admin-auth-brand { display: inline-block; margin-bottom: 60px; color: #142026; font-family: Georgia,serif; font-size: 1.45rem; letter-spacing: .08em; }
.admin-auth-brand span { color: #a36f3d; }
.admin-kicker { margin: 0 0 7px; color: #a36f3d; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.admin-auth-card h1 { margin: 0; font-family: Georgia,serif; font-size: 2.5rem; font-weight: 400; }
.admin-auth-card > p:not(.admin-kicker) { color: #77726b; line-height: 1.6; }
.admin-auth-form { display: grid; gap: 18px; margin-top: 28px; }
.admin-auth-form label, .admin-form-grid label, .admin-media-form label { display: grid; gap: 7px; color: #554f48; font-size: .72rem; font-weight: 700; letter-spacing: .035em; }
.admin-auth-form label small, .admin-form-grid label small, .admin-media-form label small { color: #999188; font-weight: 400; }
.admin-auth-form input, .admin-form-grid input, .admin-form-grid select, .admin-form-grid textarea, .admin-media-form input, .admin-media-form textarea { width: 100%; min-height: 45px; padding: 11px 12px; border: 1px solid #d8d3cc; border-radius: 5px; outline: none; background: #fff; color: #182024; font: inherit; font-weight: 400; letter-spacing: 0; }
.admin-form-grid textarea, .admin-media-form textarea { resize: vertical; line-height: 1.5; }
.admin-auth-form input:focus, .admin-form-grid input:focus, .admin-form-grid select:focus, .admin-form-grid textarea:focus, .admin-media-form input:focus, .admin-media-form textarea:focus { border-color: #a36f3d; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-back-link { display: inline-block; margin-top: 35px; color: #8d8175; font-size: .72rem; }
.admin-button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 10px 16px; border: 1px solid transparent; border-radius: 5px; font: inherit; font-size: .7rem; font-weight: 700; cursor: pointer; }
.admin-button--primary { border-color: #8e1820; background: #8e1820; color: #fff; }
.admin-button--quiet { border-color: #d8d2c9; background: #fff; color: #625d57; }
.admin-button--danger { border-color: #dfb7ba; background: #fff5f5; color: #952e35; }
.admin-button--danger:hover { border-color: #a73d44; background: #a73d44; color: #fff; }
.admin-flash { margin-bottom: 20px; padding: 14px 16px; border-radius: 6px; font-size: .76rem; line-height: 1.55; }
.admin-flash--success { border: 1px solid #9dc8ad; background: #edf8f1; color: #24643c; }
.admin-flash--error { border: 1px solid #e0a4a8; background: #fff0f1; color: #8b2930; }
.admin-sidebar nav > a { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border-radius: 7px; color: rgba(245,232,216,.58); font-size: .82rem; }
.admin-sidebar nav > a.active, .admin-sidebar nav > a:hover { background: rgba(215,163,109,.12); color: var(--gold-bright); }
.admin-sidebar nav > a svg { width: 17px; }
.profile-form { display: grid; gap: 20px; }
.profile-form__actions { display: flex; justify-content: space-between; gap: 10px; }
.profile-form__actions--bottom { justify-content: flex-end; padding-top: 5px; }
.admin-form-panel { overflow: hidden; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.admin-form-panel > header { display: flex; min-height: 84px; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid #ebe8e3; }
.admin-form-panel header p { margin: 0 0 4px; color: #a36f3d; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.admin-form-panel header h2 { margin: 0; font-family: Georgia,serif; font-size: 1.25rem; font-weight: 400; }
.admin-form-panel header small { color: #908a83; font-size: .65rem; }
.admin-form-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 24px; }
.admin-form-grid--compact { grid-template-columns: repeat(4,1fr); }
.admin-form-grid .span-2 { grid-column: span 2; }
.admin-form-grid .span-3 { grid-column: span 3; }
.admin-check { display: flex !important; align-items: center; gap: 9px !important; align-self: end; min-height: 45px; }
.admin-check input { width: 17px !important; min-height: 17px !important; accent-color: #8e1820; }
.admin-check span { display: grid; gap: 2px; }
.admin-check span small { font-size: .61rem; }
.admin-status-choice { min-width: 0; margin: 0; padding: 0; border: 0; }
.admin-status-choice > legend { margin-bottom: 8px; color: #554f48; font-size: .72rem; font-weight: 700; letter-spacing: .035em; }
.admin-status-choice > div { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.admin-status-choice label { position: relative; display: block; cursor: pointer; }
.admin-status-choice input { position: absolute; width: 1px !important; min-height: 1px !important; opacity: 0; pointer-events: none; }
.admin-status-choice label > span { display: grid; min-height: 88px; align-content: center; gap: 5px; padding: 15px 16px; border: 1px solid #d8d3cc; border-radius: 7px; background: #fff; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; }
.admin-status-choice label > span::before { content: ""; position: absolute; top: 13px; right: 13px; width: 10px; height: 10px; border: 1px solid #c4bdb5; border-radius: 50%; background: #fff; }
.admin-status-choice strong { color: #302c28; font-size: .82rem; }
.admin-status-choice small { max-width: 210px; color: #928b83; font-size: .64rem; font-weight: 400; line-height: 1.4; }
.admin-status-choice input:checked + span { border-color: #9a652f; background: #fff8ee; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-status-choice input:checked + span::before { border: 3px solid #fff; background: #9a652f; box-shadow: 0 0 0 1px #9a652f; }
.admin-status-choice input:focus-visible + span { outline: 2px solid #8e1820; outline-offset: 2px; }
.admin-arrival-fields { display: grid; grid-template-columns: minmax(220px,1.2fr) 1fr 1fr; align-items: end; gap: 18px; padding: 18px; border: 1px solid #ead1a8; border-radius: 8px; background: #fff9ed; }
.admin-arrival-fields > div { display: grid; align-self: center; gap: 4px; }
.admin-arrival-fields > div strong { color: #5d4326; font-family: Georgia,serif; font-size: 1rem; font-weight: 400; }
.admin-arrival-fields > div small { color: #8a755c; font-size: .64rem; line-height: 1.45; }
.admin-service-catalog { display: grid; gap: 0; }
.admin-service-group { margin: 0; padding: 24px; border: 0; border-bottom: 1px solid #ebe8e3; }
.admin-service-group:last-child { border-bottom: 0; }
.admin-service-group legend { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 18px; padding: 0; }
.admin-service-group legend > span { display: grid; gap: 3px; }
.admin-service-group legend strong { color: #342f2a; font-family: Georgia,serif; font-size: 1.06rem; font-weight: 400; }
.admin-service-group legend small { color: #918a83; font-size: .65rem; }
.admin-service-group legend em { flex: 0 0 auto; padding: 6px 10px; border-radius: 99px; background: #f4eee6; color: #876949; font-size: .62rem; font-style: normal; font-weight: 400; }
.admin-service-group legend b { font-weight: 800; }
.admin-service-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.admin-service-option { position: relative; cursor: pointer; }
.admin-service-option input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.admin-service-option span { display: flex; min-height: 47px; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid #ddd8d1; border-radius: 6px; background: #fff; color: #5f5952; font-size: .7rem; line-height: 1.3; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.admin-service-option span::before { content: ""; display: grid; width: 17px; height: 17px; flex: 0 0 auto; place-items: center; border: 1px solid #cfc7be; border-radius: 4px; color: #fff; font-size: .65rem; }
.admin-service-option input:checked + span { border-color: #a36f3d; background: #fff7ec; color: #4e3824; }
.admin-service-option input:checked + span::before { content: "✓"; border-color: #8e1820; background: #8e1820; }
.admin-service-option input:focus-visible + span { outline: 2px solid #8e1820; outline-offset: 2px; }
.admin-media-form { display: grid; grid-template-columns: 250px 1fr; gap: 25px; padding: 24px; }
.admin-media-form > img, .admin-image-placeholder { width: 250px; height: 330px; object-fit: cover; object-position: center top; border: 1px solid #ded9d2; background: #f1ece5; }
.admin-image-placeholder { display: grid; place-items: center; color: #9d948b; font-size: .75rem; }
.admin-media-form > div { display: grid; align-content: start; gap: 17px; }

.admin-service-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: -6px 0 16px; }
.admin-service-tools button { padding: 6px 9px; border: 1px solid #ddd6ce; border-radius: 5px; background: #fff; color: #7f6d5b; font: inherit; font-size: .61rem; cursor: pointer; }
.admin-service-tools button:hover { border-color: #b99b7c; background: #faf5ee; color: #5a4430; }
.admin-primary-preview { width: 250px; }
.admin-primary-preview > img, .admin-primary-preview > .admin-image-placeholder { width: 250px; height: 330px; object-fit: cover; object-position: center top; border: 1px solid #ded9d2; background: #f1ece5; }
.admin-upload-note { display: grid; gap: 4px; padding: 13px 14px; border: 1px solid #e5d8c8; border-radius: 7px; background: #fff9f1; }
.admin-upload-note strong { color: #6f4b29; font-size: .7rem; }
.admin-upload-note span { color: #8a7b6d; font-size: .64rem; line-height: 1.5; }
.admin-gallery-existing { display: grid; gap: 10px; margin-top: 4px; }
.admin-gallery-existing > strong { color: #554f48; font-size: .72rem; }
.admin-gallery-existing > div, .admin-gallery-new { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.admin-gallery-card { position: relative; display: grid !important; overflow: hidden; gap: 0 !important; border: 1px solid #ded9d2; border-radius: 7px; background: #fff; }
.admin-gallery-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; background: #eee9e2; }
.admin-gallery-card > span { display: flex; min-height: 44px; align-items: center; gap: 7px; padding: 8px; color: #756d65; font-size: .59rem; font-weight: 400; line-height: 1.3; }
.admin-gallery-card > span input { width: 15px !important; min-height: 15px !important; flex: 0 0 auto; accent-color: #8e1820; }
.admin-gallery-card--new > span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-gallery-card--new > button { margin: 0 8px 8px; padding: 6px 8px; border: 1px solid #ddd4ca; border-radius: 5px; background: #fff; color: #8e1820; font: inherit; font-size: .58rem; cursor: pointer; }
.admin-cropper[hidden] { display: none !important; }
.admin-cropper { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 18px; background: rgba(5,11,14,.84); backdrop-filter: blur(7px); }
.admin-cropper-open { overflow: hidden; }
.admin-cropper__dialog { width: min(100%,700px); max-height: calc(100svh - 36px); overflow: auto; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.admin-cropper__dialog > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.admin-cropper__dialog h2 { margin: 0; font-family: Georgia,serif; font-size: 1.45rem; font-weight: 400; }
.admin-cropper__close { width: 36px; height: 36px; border: 1px solid #ddd7cf; border-radius: 50%; background: #fff; color: #756d64; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.admin-cropper__help { margin: 0 auto 16px; color: #7f7770; font-size: .68rem; line-height: 1.55; }
.admin-cropper__stage { position: relative; width: min(100%,440px); aspect-ratio: 4 / 5; overflow: hidden; margin: 0 auto; border: 2px solid #c59663; background: #111; cursor: grab; touch-action: none; user-select: none; box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 15px 35px rgba(0,0,0,.16); }
.admin-cropper__stage::after { content: ""; position: absolute; z-index: 2; inset: 12px; border: 1px solid rgba(255,255,255,.72); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2); pointer-events: none; }
.admin-cropper__stage.is-dragging { cursor: grabbing; }
.admin-cropper__stage img { position: absolute; z-index: 1; max-width: none; pointer-events: none; user-select: none; }
.admin-cropper__controls { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; width: min(100%,520px); margin: 17px auto 0; }
.admin-cropper__controls label { display: grid; gap: 7px; color: #5d5750; font-size: .67rem; font-weight: 700; }
.admin-cropper__controls input { width: 100%; accent-color: #8e1820; }
.admin-cropper__controls > span { color: #9a8e82; font-size: .62rem; white-space: nowrap; }
.admin-cropper__dialog > footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #eee9e3; }
.admin-cropper__dialog > footer > span { color: #8d837a; font-size: .65rem; }
.admin-cropper__dialog > footer > div { display: flex; gap: 8px; }

.admin-profile-panel > header > a { color: #fff; }
.admin-profile-header-actions { display: flex; align-items: center; gap: 8px; }
.admin-profile-header-actions .admin-button--primary { color: #fff; }
.admin-profile-header-actions form { margin: 0; }
.admin-profile-list article { display: grid; grid-template-columns: 46px minmax(150px,1fr) auto auto 32px; align-items: center; gap: 14px; min-height: 72px; padding: 10px 20px; border-bottom: 1px solid #ece9e5; }
.admin-profile-list article:last-child { border-bottom: 0; }
.admin-profile-list article > img { width: 43px; height: 52px; border-radius: 4px; object-fit: cover; object-position: center top; }
.admin-profile-list__name { display: grid; }
.admin-profile-list__name strong { font-size: .82rem; }
.admin-profile-list__name small { color: #918b84; font-size: .66rem; }
.admin-status { padding: 6px 8px; border-radius: 99px; background: #f0eee9; color: #77716a; font-size: .6rem; }
.admin-status--active { background: #e8f6ed; color: #2d7046; }
.admin-status--upcoming { background: #fff4df; color: #91672b; }
.admin-list__edit { color: #8e6842; font-size: .67rem; }
.admin-delete { width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; color: #aa8f91; font-size: 1.25rem; cursor: pointer; }
.admin-delete:hover { background: #fff0f1; color: #9a2028; }

@media (max-width: 900px) {
  .profile-filters { grid-template-columns: repeat(2,1fr); }
  .profile-filters button { align-self: end; }
  .profile-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .profile-portrait { width: min(100%,560px); min-height: 0; aspect-ratio: 4 / 5; }
  .profile-portrait__image-button { height: 100%; }
  .profile-portrait__image-button img { height: 100%; }
  .profile-facts dl { grid-template-columns: repeat(2,1fr); }
  .profile-service-grid { grid-template-columns: 1fr; }
  .admin-form-grid, .admin-form-grid--compact { grid-template-columns: repeat(2,1fr); }
  .admin-form-grid .span-3 { grid-column: span 2; }
  .admin-arrival-fields { grid-template-columns: 1fr 1fr; }
  .admin-arrival-fields > div { grid-column: 1 / -1; }
  .admin-service-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 590px) {
  .cookie-consent { right: 8px; bottom: 8px; left: 8px; width: calc(100% - 16px); max-height: calc(100svh - 16px); padding: 17px 13px 13px; }
  .cookie-consent__actions { grid-template-columns: 1fr 1fr; }
  .cookie-consent__actions [data-cookie-essential] { order: 1; }
  .cookie-consent__actions [data-cookie-all] { order: 2; }
  .cookie-consent__actions [data-cookie-settings-open], .cookie-consent__actions [data-cookie-save] { order: 3; grid-column: 1 / -1; }
  .cookie-options label { align-items: flex-start; padding: 11px 10px; }
  .legal-page { padding: 125px 0 75px; }
  .profile-filters { grid-template-columns: 1fr 1fr; padding: 13px; }
  .profile-filters label:first-child { grid-column: 1 / -1; }
  .profile-filters button { grid-column: 1 / -1; }
  .girl-card--image { min-height: 265px; }
  .profile-hero { padding: calc(var(--public-header-height) + 28px) 0 58px; }
  .profile-hero__grid { gap: 30px; }
  .profile-mobile-media { display: block; position: relative; width: 100%; margin: 0 0 32px; overflow: hidden; }
  .profile-mobile-media__track { display: flex; gap: 10px; overflow-x: auto; padding: 0 13vw 4px 18px; scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .profile-mobile-media__track::-webkit-scrollbar { display: none; }
  .profile-mobile-media__slide { position: relative; flex: 0 0 84vw; width: 84vw; aspect-ratio: 4 / 5; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 2px; background: var(--panel); scroll-snap-align: start; scroll-snap-stop: always; cursor: zoom-in; box-shadow: 0 18px 44px rgba(0,0,0,.26); }
  .profile-mobile-media__slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .profile-mobile-media__badges { pointer-events: none; position: absolute; top: 14px; left: 30px; right: 12vw; z-index: 3; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
  .profile-mobile-media__status { display: inline-flex; align-items: center; min-height: 30px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); background: rgba(8,16,20,.82); color: var(--cream); font-size: .62rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; backdrop-filter: blur(8px); }
  .profile-mobile-media__status i { width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #65c887; box-shadow: 0 0 0 4px rgba(101,200,135,.12); }
  .profile-mobile-media__nav { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 8px; margin: 10px 18px 0; }
  .profile-mobile-media__arrow { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid rgba(215,163,109,.38); border-radius: 50%; background: rgba(215,163,109,.07); color: var(--gold-bright); font: inherit; font-size: 1.7rem; line-height: 1; cursor: pointer; }
  .profile-mobile-media__arrow:disabled { opacity: .28; }
  .profile-mobile-media__arrow--next:not(:disabled) { animation: profile-swipe-nudge 1.8s ease-in-out 2; }
  .profile-mobile-media__hint { display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(245,232,216,.76); font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-align: center; text-transform: uppercase; }
  .profile-mobile-media__hint b { color: var(--gold-bright); font-size: 1rem; }
  .profile-mobile-media__progress { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 26px; margin: 4px 18px 0; }
  .profile-mobile-media__dots { max-width: 160px; }
  .profile-mobile-media__counter { min-width: 36px; color: rgba(245,232,216,.55); font-size: .67rem; font-variant-numeric: tabular-nums; }
  .profile-hero__grid .profile-portrait { display: none; }
  .profile-gallery { display: none; }

  .profile-portrait { width: 100%; min-height: 0; aspect-ratio: 4 / 5; border-radius: 2px; }
  .profile-portrait__image-button { height: 100%; aspect-ratio: auto; }
  .profile-portrait__image-button img { height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center top; }
  .profile-portrait__image-button > span { display: none; }
  .profile-portrait__status { right: 14px; bottom: 14px; padding: 8px 11px; font-size: .66rem; }
  .profile-hero__copy h1 { font-size: clamp(3.5rem,18vw,5.3rem); line-height: .88; }
  .profile-back { margin-bottom: 22px; }
  .profile-tagline { margin-top: 22px; font-size: 1.12rem; }
  .profile-summary, .profile-bio { font-size: .94rem; line-height: 1.65; }
  .profile-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
  .profile-actions .button { width: 100%; justify-content: center; }
  .profile-facts dl { grid-template-columns: 1fr 1fr; margin-top: 34px; }
  .profile-facts dl > div { min-height: 96px; padding: 15px 13px; }
  .profile-facts dd { margin-top: 10px; font-size: 1.1rem; line-height: 1.25; overflow-wrap: anywhere; }
  .profile-gallery__slider { margin-top: 34px; }
  .profile-gallery__grid { display: flex; gap: 12px; overflow-x: auto; padding: 0 7vw 8px 0; scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .profile-gallery__grid::-webkit-scrollbar { display: none; }
  .profile-gallery__grid button { flex: 0 0 86%; width: 86%; aspect-ratio: 4 / 5; scroll-snap-align: start; scroll-snap-stop: always; }
  .profile-gallery__grid button > span { display: none; }
  .profile-gallery__controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 15px; }
  .profile-gallery__dots { flex: 1 1 auto; max-width: 150px; }
  .profile-gallery__counter { display: none; }
  .profile-switcher { width: 100%; grid-template-columns: 1fr; padding: 0; }
  .profile-switcher a { min-height: 96px; padding: 20px 24px; }
  .profile-switcher a:last-child { border-top: 0; border-left: 1px solid var(--line); }
  .profile-lightbox { grid-template-columns: 48px minmax(0,1fr) 48px; padding: 20px 8px; }
  .profile-lightbox__previous, .profile-lightbox__next { width: 42px; height: 52px; font-size: 2.1rem; }
  .profile-lightbox figure { max-width: 100%; max-height: calc(100vh - 40px); }
  .profile-lightbox figure img { max-height: calc(100vh - 105px); }
  .profile-lightbox figcaption { padding-inline: 8px; }
  .admin-auth-card { padding: 30px 23px; }
  .admin-form-grid, .admin-form-grid--compact { grid-template-columns: 1fr; padding: 17px; }
  .admin-form-grid .span-2, .admin-form-grid .span-3 { grid-column: span 1; }
  .admin-status-choice > div, .admin-arrival-fields, .admin-service-options { grid-template-columns: 1fr; }
  .admin-status-choice label > span { min-height: 72px; }
  .admin-arrival-fields > div { grid-column: auto; }
  .admin-service-group { padding: 20px 17px; }
  .admin-service-group legend { align-items: flex-start; }
  .admin-service-group legend em { margin-top: 1px; }
  .admin-media-form { grid-template-columns: 1fr; padding: 17px; }
  .admin-media-form > img, .admin-image-placeholder { width: 100%; height: auto; aspect-ratio: .78; }
  .admin-primary-preview { width: 100%; }
  .admin-primary-preview > img, .admin-primary-preview > .admin-image-placeholder { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .admin-gallery-existing > div, .admin-gallery-new { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-cropper { padding: 8px; }
  .admin-cropper__dialog { max-height: calc(100svh - 16px); padding: 15px; }
  .admin-cropper__controls { grid-template-columns: 1fr; gap: 8px; }
  .admin-cropper__controls > span { white-space: normal; }
  .admin-cropper__dialog > footer { align-items: stretch; flex-direction: column; }
  .admin-cropper__dialog > footer > div { display: grid; grid-template-columns: 1fr 1fr; }
  .admin-profile-list article { grid-template-columns: 42px 1fr auto; gap: 10px; padding: 10px 13px; }
  .admin-status { display: none; }
  .admin-profile-list article > form { grid-column: 3; }
  .admin-list__edit { grid-column: 2; }
  .profile-form__actions { position: sticky; z-index: 5; top: 5px; padding: 8px; border: 1px solid #ddd8d1; border-radius: 7px; background: rgba(255,255,255,.94); }
  .profile-form__actions--bottom { position: static; }
  .admin-profile-panel > header { align-items: flex-start; flex-direction: column; }
  .admin-profile-header-actions { width: 100%; flex-wrap: wrap; }
}

/* Admin v2.3 – Girls navigation & quick status */
.admin-nav-group { display: grid; gap: 7px; margin-bottom: 8px; }
.admin-nav-group__title { display: flex; align-items: center; gap: 11px; padding: 10px 13px 7px; color: #f5e8d8; font-size: .84rem; }
.admin-nav-group__title svg { width: 17px; color: var(--gold); }
.admin-nav-group__title strong { font-weight: 700; }
.admin-nav-sub { display: grid; gap: 3px; padding-left: 14px; border-left: 1px solid rgba(215,163,109,.18); margin-left: 21px; }
.admin-nav-sub > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 34px; padding: 7px 10px; border-radius: 6px; color: rgba(245,232,216,.55); font-size: .72rem; }
.admin-nav-sub > a:hover, .admin-nav-sub > a.active { background: rgba(215,163,109,.12); color: var(--gold-bright); }
.admin-nav-sub > a > span { min-width: 22px; padding: 2px 6px; border-radius: 99px; background: rgba(255,255,255,.07); color: rgba(245,232,216,.62); text-align: center; font-size: .58rem; }
.admin-nav-website { margin-top: 12px; border-top: 1px solid rgba(255,255,255,.08); border-radius: 0 !important; padding-top: 17px !important; }

.admin-profile-list article { grid-template-columns: 46px minmax(150px,1fr) minmax(210px,285px) auto 32px; }
.admin-quick-status { display: flex; align-items: center; justify-content: flex-end; gap: 7px; min-width: 0; }
.admin-quick-status select,
.admin-quick-status input[type="date"] { min-height: 34px; border: 1px solid #ddd8d1; border-radius: 6px; background: #fff; color: #4f4b46; font: inherit; font-size: .67rem; outline: none; }
.admin-quick-status select { width: 105px; padding: 6px 27px 6px 9px; cursor: pointer; }
.admin-quick-status input[type="date"] { width: 126px; padding: 5px 7px; }
.admin-quick-status select:focus,
.admin-quick-status input[type="date"]:focus { border-color: #b28a61; box-shadow: 0 0 0 2px rgba(178,138,97,.1); }
.admin-quick-status__date { display: flex; align-items: center; gap: 5px; }
.admin-quick-status__date button { min-height: 34px; padding: 6px 8px; border: 0; border-radius: 6px; background: #182024; color: #fff; font: inherit; font-size: .6rem; cursor: pointer; }
.admin-empty-list { padding: 34px 22px; color: #8e8880; text-align: center; font-size: .75rem; }

@media (max-width: 760px) {
  .admin-sidebar nav { display: flex; align-items: stretch; gap: 8px; overflow-x: auto; overflow-y: hidden; }
  .admin-nav-group { flex: 0 0 auto; display: flex; align-items: stretch; margin: 0; }
  .admin-nav-group__title { display: none; }
  .admin-nav-sub { display: flex; gap: 5px; margin: 0; padding: 0; border: 0; }
  .admin-nav-sub > a { flex: 0 0 auto; min-height: 40px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.08); }
  .admin-nav-website { flex: 0 0 auto; margin: 0; padding: 10px 12px !important; border: 1px solid rgba(255,255,255,.08); border-radius: 6px !important; }
}



@media (max-width: 590px) {
  .admin-profile-list article { grid-template-columns: 42px 1fr 32px; align-items: center; }
  .admin-profile-list article > .admin-quick-status { grid-column: 2 / -1; grid-row: auto; justify-content: flex-start; flex-wrap: wrap; padding-top: 2px; }
  .admin-profile-list article > .admin-delete-form { grid-column: 3; }
  .admin-list__edit { grid-column: 2; }
  .admin-quick-status select { width: 112px; }
  .admin-quick-status__date { flex: 1 1 190px; }
  .admin-quick-status input[type="date"] { flex: 1 1 auto; width: auto; }
}

/* Admin v2.5 – zentrale Girl-Profilvorlage */
.profile-settings-form { display: grid; gap: 20px; }
.admin-settings-intro { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.admin-settings-intro h2 { margin: 0; font-family: Georgia,serif; font-size: 1.55rem; font-weight: 400; }
.admin-settings-intro p:last-child { max-width: 760px; margin: 8px 0 0; color: #77716a; font-size: .75rem; line-height: 1.6; }
.admin-settings-intro > .admin-button { flex: 0 0 auto; min-height: 46px; }
.admin-settings-panel { overflow: visible; }
.admin-settings-panel > header .admin-button--primary { color: #fff; }
.admin-settings-rows, .admin-settings-service-items { display: grid; }
.admin-settings-row { display: grid; grid-template-columns: auto minmax(210px,1fr) repeat(3,minmax(105px,auto)); align-items: end; gap: 14px; padding: 15px 22px; border-bottom: 1px solid #ebe8e3; }
.admin-settings-row--custom { grid-template-columns: auto minmax(165px,1fr) 145px minmax(190px,1.15fr) repeat(3,auto) auto; }
.admin-settings-row:last-child, .admin-settings-service-row:last-child { border-bottom: 0; }
.admin-settings-row > label:not(.admin-settings-toggle), .admin-settings-service-head > label, .admin-settings-service-row > label:not(.admin-settings-toggle) { display: grid; gap: 7px; color: #554f48; font-size: .69rem; font-weight: 700; }
.admin-settings-row label small { color: #9b948c; font-size: .58rem; font-weight: 400; }
.admin-settings-row input:not([type="checkbox"]), .admin-settings-row select, .admin-settings-service-head input, .admin-settings-service-row input:not([type="checkbox"]) { width: 100%; min-height: 42px; padding: 10px 11px; border: 1px solid #d8d3cc; border-radius: 5px; outline: none; background: #fff; color: #182024; font: inherit; font-weight: 400; }
.admin-settings-row input:focus, .admin-settings-row select:focus, .admin-settings-service-head input:focus, .admin-settings-service-row input:focus { border-color: #a36f3d; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-settings-toggle { display: flex; min-height: 42px; align-items: center; gap: 7px; color: #655e57; font-size: .65rem; font-weight: 700; white-space: nowrap; cursor: pointer; }
.admin-settings-toggle input { width: 16px; height: 16px; accent-color: #8e1820; }
.admin-settings-move { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; align-self: center; }
.admin-settings-move button { width: 28px; height: 28px; border: 1px solid #ddd7cf; border-radius: 4px; background: #fff; color: #806f5d; cursor: pointer; }
.admin-settings-move button:hover { border-color: #b99775; color: #8e1820; }
.admin-settings-remove { min-height: 38px; padding: 8px 10px; border: 1px solid #e2c8ca; border-radius: 5px; background: #fff7f7; color: #98363d; font: inherit; font-size: .62rem; font-weight: 700; white-space: nowrap; cursor: pointer; }
.admin-settings-empty { display: grid; min-height: 185px; place-items: center; align-content: center; gap: 7px; padding: 30px; color: #8f8880; text-align: center; }
.admin-settings-empty strong { color: #4e4944; font-family: Georgia,serif; font-size: 1.15rem; font-weight: 400; }
.admin-settings-empty span { margin-bottom: 10px; font-size: .7rem; }
.admin-settings-services { display: grid; }
.admin-settings-service-group { margin: 0; padding: 0; border: 0; border-bottom: 8px solid #f2f0ec; }
.admin-settings-service-group:last-child { border-bottom: 0; }
.admin-settings-service-head { display: grid; grid-template-columns: minmax(190px,.8fr) minmax(280px,1.5fr) auto; align-items: end; gap: 15px; padding: 19px 22px; background: #faf8f5; }
.admin-settings-service-row { display: grid; grid-template-columns: auto minmax(220px,1fr) auto auto; align-items: end; gap: 14px; padding: 12px 22px; border-bottom: 1px solid #ebe8e3; }

@media (max-width: 1220px) {
  .admin-settings-row--custom { grid-template-columns: auto 1fr 150px 1fr; }
  .admin-settings-row--custom .admin-settings-toggle { grid-row: 2; }
  .admin-settings-row--custom .admin-settings-remove { grid-column: 4; grid-row: 2; justify-self: end; }
}

@media (max-width: 760px) {
  .admin-settings-intro { align-items: flex-start; flex-direction: column; }
  .admin-settings-row, .admin-settings-row--custom { grid-template-columns: auto 1fr 1fr; }
  .admin-settings-row > label:not(.admin-settings-toggle), .admin-settings-row--custom > label:not(.admin-settings-toggle) { grid-column: 2 / -1; }
  .admin-settings-row--custom .admin-settings-toggle { grid-row: auto; }
  .admin-settings-row--custom .admin-settings-remove { grid-column: 3; grid-row: auto; justify-self: end; }
  .admin-settings-service-head { grid-template-columns: 1fr; }
  .admin-settings-service-head .admin-button { justify-self: start; }
}

@media (max-width: 520px) {
  .admin-settings-intro { padding: 18px; }
  .admin-settings-intro > .admin-button { width: 100%; }
  .admin-settings-panel > header { align-items: flex-start; }
  .admin-settings-panel > header .admin-button { flex: 0 0 auto; padding-inline: 10px; }
  .admin-settings-row, .admin-settings-row--custom, .admin-settings-service-row { grid-template-columns: 1fr 1fr; padding: 14px 16px; }
  .admin-settings-move { grid-column: 1; justify-self: start; }
  .admin-settings-row > label:not(.admin-settings-toggle), .admin-settings-row--custom > label:not(.admin-settings-toggle), .admin-settings-service-row > label:not(.admin-settings-toggle) { grid-column: 1 / -1; }
  .admin-settings-row--custom .admin-settings-remove, .admin-settings-service-row .admin-settings-remove { grid-column: 2; grid-row: 1; justify-self: end; }
  .admin-settings-service-head { padding: 16px; }
}

/* Admin v2.4 – kompakte Website-Statistik */
.analytics-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.analytics-heading h2 { margin: 0; font-family: Georgia,serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 400; }
.analytics-heading > div > p:last-child { max-width: 680px; margin: 7px 0 0; color: #807a73; font-size: .75rem; line-height: 1.55; }
.analytics-periods { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid #ddd8d1; border-radius: 8px; background: #fff; }
.analytics-periods a { min-width: 66px; padding: 9px 12px; border-radius: 5px; color: #807a73; text-align: center; font-size: .68rem; font-weight: 700; }
.analytics-periods a:hover { color: #8e1820; }
.analytics-periods a.active { background: #182024; color: #fff; }

.analytics-kpis { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; margin-bottom: 18px; }
.analytics-kpis article { display: grid; gap: 5px; min-height: 132px; padding: 20px; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.analytics-kpis article > span { color: #8a847d; font-size: .68rem; font-weight: 700; }
.analytics-kpis article > strong { align-self: end; font-family: Georgia,serif; font-size: clamp(2rem,3.8vw,3rem); font-weight: 400; line-height: 1; }
.analytics-kpis footer { display: flex; align-items: center; gap: 7px; margin-top: 7px; }
.analytics-kpis footer small { overflow: hidden; color: #a09a93; font-size: .6rem; white-space: nowrap; text-overflow: ellipsis; }
.analytics-change { flex: 0 0 auto; padding: 3px 6px; border-radius: 99px; font-size: .58rem; font-style: normal; font-weight: 800; }
.analytics-change--up { background: #e7f6ec; color: #2f7448; }
.analytics-change--down { background: #fff0f0; color: #9b3338; }
.analytics-change--neutral { background: #f0eee9; color: #817b74; }

.analytics-panel { overflow: hidden; border: 1px solid #e0ddd7; border-radius: 10px; background: #fff; }
.analytics-panel > header { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 20px; border-bottom: 1px solid #ece9e5; }
.analytics-panel > header p { margin: 0 0 4px; color: #a36f3d; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.analytics-panel > header h2 { margin: 0; font-family: Georgia,serif; font-size: 1.18rem; font-weight: 400; }
.analytics-panel > header > span { color: #9a938b; font-size: .6rem; }

.analytics-trend { margin-bottom: 18px; }
.analytics-trend > header > span { display: flex; align-items: center; gap: 7px; }
.analytics-trend > header > span i { width: 9px; height: 9px; border-radius: 2px; background: #8e1820; }
.analytics-trend > header > span i:nth-of-type(2) { margin-left: 5px; background: #c49b70; }
.analytics-chart { display: flex; min-height: 250px; align-items: stretch; gap: clamp(3px,.7vw,9px); padding: 24px 20px 16px; overflow-x: auto; }
.analytics-chart__item { flex: 1 0 18px; display: grid; min-width: 18px; grid-template-rows: 1fr 20px; gap: 6px; }
.analytics-chart__bars { display: flex; height: 190px; align-items: flex-end; justify-content: center; gap: 2px; border-bottom: 1px solid #eeeae5; }
.analytics-chart__bars i, .analytics-chart__bars b { display: block; width: min(42%,14px); min-height: 2px; border-radius: 3px 3px 1px 1px; background: #8e1820; }
.analytics-chart__bars b { width: min(28%,9px); background: #c49b70; }
.analytics-chart__item > span { overflow: hidden; color: #9a948d; text-align: center; font-size: .55rem; white-space: nowrap; }

.analytics-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; align-items: start; }
.analytics-panel--wide { grid-column: 1 / -1; }
.analytics-ranking { padding: 7px 0; }
.analytics-ranking__row { display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 58px; padding: 9px 18px; border-bottom: 1px solid #f0ede9; }
.analytics-ranking__row:last-child { border-bottom: 0; }
.analytics-ranking__row > b { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #f3eee8; color: #9d744c; font-size: .6rem; }
.analytics-ranking__row > div { display: grid; gap: 4px; min-width: 0; }
.analytics-ranking__row strong { overflow: hidden; color: #34302c; font-size: .73rem; white-space: nowrap; text-overflow: ellipsis; }
.analytics-ranking__row small { overflow: hidden; color: #99928a; font-size: .58rem; white-space: nowrap; text-overflow: ellipsis; }
.analytics-ranking__row div > span { display: block; width: 100%; height: 4px; overflow: hidden; border-radius: 99px; background: #f0ede9; }
.analytics-ranking__row div > span i { display: block; height: 100%; border-radius: inherit; background: #b38150; }
.analytics-ranking__row > em { color: #514b45; font-family: Georgia,serif; font-size: 1rem; font-style: normal; }
.analytics-ranking__row--source { grid-template-columns: minmax(0,1fr) auto; }
.analytics-ranking__row--source div > span i { background: #8e1820; }

.analytics-geo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; }
.analytics-geo-column { min-width: 0; padding: 19px; border-right: 1px solid #ece9e5; }
.analytics-geo-column:last-child { border-right: 0; }
.analytics-geo-column > h3 { margin: 0 0 13px; color: #625c55; font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; }
.analytics-geo-row { display: grid; grid-template-columns: minmax(0,1fr) 68px 32px; align-items: center; gap: 8px; min-height: 48px; border-top: 1px solid #f2efeb; }
.analytics-geo-row:first-of-type { border-top: 0; }
.analytics-geo-row > div { display: grid; min-width: 0; }
.analytics-geo-row strong { overflow: hidden; font-size: .69rem; white-space: nowrap; text-overflow: ellipsis; }
.analytics-geo-row small { overflow: hidden; color: #9a938c; font-size: .55rem; white-space: nowrap; text-overflow: ellipsis; }
.analytics-geo-row > span { height: 4px; overflow: hidden; border-radius: 99px; background: #f0ede9; }
.analytics-geo-row > span i { display: block; height: 100%; border-radius: inherit; background: #b38150; }
.analytics-geo-row > em { color: #7f7770; text-align: right; font-size: .62rem; font-style: normal; font-weight: 700; }

.analytics-devices > div { display: grid; gap: 13px; padding: 20px; }
.analytics-devices article { display: grid; grid-template-columns: 1fr auto; gap: 7px 12px; align-items: center; }
.analytics-devices article strong { font-size: .72rem; }
.analytics-devices article > span { color: #7d766f; font-size: .7rem; font-weight: 700; }
.analytics-devices article > i { grid-column: 1 / -1; height: 7px; overflow: hidden; border-radius: 99px; background: #f0ede9; }
.analytics-devices article > i > b { display: block; height: 100%; border-radius: inherit; background: #8e1820; }
.analytics-privacy { min-height: 100%; padding: 22px; border: 1px solid #ded8cf; border-radius: 10px; background: #ece7df; }
.analytics-privacy strong { color: #4c4640; font-family: Georgia,serif; font-size: 1.05rem; font-weight: 400; }
.analytics-privacy p { margin: 8px 0 12px; color: #746d66; font-size: .68rem; line-height: 1.6; }
.analytics-privacy small { display: block; color: #8e704f; font-size: .59rem; line-height: 1.45; }
.analytics-empty { display: grid; min-height: 180px; place-items: center; padding: 25px; color: #9a938c; text-align: center; font-size: .72rem; }
.analytics-empty--small { min-height: 80px; padding: 18px; }

@media (max-width: 1050px) {
  .analytics-kpis { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .analytics-geo-grid { grid-template-columns: 1fr; }
  .analytics-geo-column { border-right: 0; border-bottom: 1px solid #ece9e5; }
  .analytics-geo-column:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  .analytics-heading { align-items: stretch; flex-direction: column; }
  .analytics-periods { align-self: flex-start; max-width: 100%; overflow-x: auto; }
  .analytics-grid { grid-template-columns: 1fr; }
  .analytics-panel--wide { grid-column: auto; }
  .analytics-chart { padding-inline: 12px; }
}

@media (max-width: 520px) {
  .analytics-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .analytics-kpis article { min-height: 115px; padding: 15px; }
  .analytics-kpis article > strong { font-size: 2rem; }
  .analytics-kpis footer { align-items: flex-start; flex-direction: column; gap: 4px; }
  .analytics-kpis footer small { max-width: 100%; }
  .analytics-periods { width: 100%; display: grid; grid-template-columns: repeat(4,1fr); }
  .analytics-periods a { min-width: 0; padding-inline: 6px; }
  .analytics-panel > header { min-height: 72px; padding: 15px; }
  .analytics-trend > header > span { display: none; }
  .analytics-chart { min-height: 225px; }
  .analytics-chart__bars { height: 165px; }
  .analytics-ranking__row { padding-inline: 13px; }
  .analytics-geo-row { grid-template-columns: minmax(0,1fr) 52px 28px; }
}
.analytics-geo-setting { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(105,88,68,.16); }
.analytics-geo-setting label { display: flex; align-items: center; gap: 7px; color: #615a53; font-size: .62rem; cursor: pointer; }
.analytics-geo-setting input { accent-color: #8e1820; }
.analytics-geo-setting button { min-height: 32px; padding: 6px 10px; border: 1px solid #bcae9f; border-radius: 5px; background: #fff; color: #655e57; font: inherit; font-size: .58rem; font-weight: 700; cursor: pointer; }
.analytics-geo-setting button:hover { border-color: #9b7046; color: #8e1820; }
@media (max-width: 520px) { .analytics-geo-setting { align-items: flex-start; flex-direction: column; } }


@media (max-width: 700px) {
  .hero__image { transform: none; }
  .hero__image img { object-position: 58% center; }
}

@media (max-width: 390px) {
  .profile-facts dl { grid-template-columns: 1fr; }
  .profile-facts dl > div { min-height: 82px; }
  .profile-gallery__grid button { flex-basis: 90%; width: 90%; }
  .profile-gallery__dots { max-width: 125px; }
}


/* v2.8.2 – Anwesenheit, Staging, Papierkorb & Conversion */
.staging-banner{position:relative;z-index:10000;padding:7px 16px;background:#2d2522;color:#f4d6ad;text-align:center;font-size:.66rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.status-pill--closed span{background:#b7a9a1;box-shadow:0 0 0 5px rgba(183,169,161,.12)}
.status-pill--open-soon-closing span{background:#e4a84e;box-shadow:0 0 0 5px rgba(228,168,78,.14)}
.girl-card__presence{position:absolute;z-index:4;top:14px;left:14px;display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border-radius:99px;background:rgba(18,46,31,.9);color:#fff;font-size:.63rem;font-weight:700;letter-spacing:.02em;backdrop-filter:blur(8px);box-shadow:0 8px 20px rgba(0,0,0,.15)}
.girl-card__presence i,.presence-inline i{display:inline-block;width:8px;height:8px;border-radius:50%;background:#62df91;box-shadow:0 0 0 4px rgba(98,223,145,.18)}
.girl-card__content p span.is-present{background:#62df91;box-shadow:0 0 0 4px rgba(98,223,145,.16)}
.presence-updated{margin:.45rem 0 0;color:#988c82;font-size:.68rem}
.presence-inline{display:inline-flex;align-items:center;gap:8px;color:#255b3a}
.presence-feature-setting{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px;border-bottom:1px solid #ece9e5}
.presence-feature-setting p{max-width:670px;margin:5px 0 0;color:#7c756d;font-size:.74rem;line-height:1.5}
.presence-switch,.presence-toggle{position:relative;display:inline-flex;flex:0 0 auto}
.presence-switch input,.presence-toggle input{position:absolute;opacity:0;pointer-events:none}
.presence-switch>span,.presence-toggle>span{display:block;width:54px;height:30px;border-radius:99px;background:#cbc5bf;box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);transition:.2s;cursor:pointer}
.presence-switch>span:after,.presence-toggle>span:after{content:"";display:block;width:24px;height:24px;margin:3px;border-radius:50%;background:#fff;box-shadow:0 2px 7px rgba(0,0,0,.18);transition:.2s}
.presence-switch input:checked+span,.presence-toggle input:checked+span{background:#3f9d67}
.presence-switch input:checked+span:after,.presence-toggle input:checked+span:after{transform:translateX(24px)}
.presence-list-form{padding:0}
.presence-list-head{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:18px 22px;background:#faf9f7;border-bottom:1px solid #ece9e5}
.presence-list-head>div{display:grid;gap:2px}.presence-list-head strong{font-family:Georgia,serif;font-size:1.15rem;font-weight:400}.presence-list-head span,.presence-list-head small{color:#8b847c;font-size:.67rem}
.presence-list{display:grid}.presence-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:11px 22px;border-bottom:1px solid #efede9;cursor:pointer}.presence-row:hover{background:#fcfbf9}
.presence-row__person{display:flex;align-items:center;gap:12px}.presence-row__person>img,.presence-row__person>i{width:42px;height:50px;border-radius:5px;object-fit:cover;object-position:center top}.presence-row__person>i{display:grid;place-items:center;background:#ede8e2;color:#7d6c5d;font-style:normal}.presence-row__person>span{display:grid}.presence-row__person strong{font-size:.82rem}.presence-row__person small{color:#938c84;font-size:.65rem}.presence-save{display:flex;justify-content:flex-end;padding:18px 22px}
.admin-trash-list article{grid-template-columns:46px minmax(180px,1fr) auto auto}.admin-trash-list form{margin:0}.admin-trash-list header small{color:#8b847c}
.analytics-contact-table{display:grid}.analytics-contact-table__head,.analytics-contact-table__row{display:grid;grid-template-columns:minmax(150px,1fr) 80px 80px 90px 70px;gap:10px;align-items:center;padding:10px 16px;border-bottom:1px solid #eeeae5}.analytics-contact-table__head{color:#938b83;background:#faf9f7;font-size:.61rem;text-transform:uppercase;letter-spacing:.06em}.analytics-contact-table__row{font-size:.72rem}.analytics-contact-table__row span,.analytics-contact-table__row em{text-align:right}.analytics-contact-table__row em{font-style:normal;font-weight:700;color:#8e1820}
@media(max-width:720px){.presence-feature-setting{align-items:flex-start;padding:17px}.presence-list-head{padding:14px 16px}.presence-list-head>small{display:none}.presence-row{padding:10px 15px}.presence-save{position:sticky;bottom:0;z-index:3;padding:12px 15px;background:rgba(255,255,255,.94);backdrop-filter:blur(10px)}.presence-save .admin-button{width:100%}.admin-trash-list article{grid-template-columns:42px 1fr;gap:10px}.admin-trash-list article>form{grid-column:2}.admin-trash-list article>form .admin-button{width:100%}.analytics-contact-table{overflow-x:auto}.analytics-contact-table__head,.analytics-contact-table__row{min-width:560px}.girl-card__presence{top:10px;left:10px;padding:6px 8px;font-size:.58rem}}

/* v2.8.4 – Zimmervermietung */
.room-rental-page{background:#f4f1eb;color:#111}
.room-rental-hero{position:relative;min-height:620px;display:flex;align-items:flex-end;overflow:hidden;background:#0a0d0f}
.room-rental-hero__image,.room-rental-hero__shade{position:absolute;inset:0}
.room-rental-hero__image{background-size:cover;background-position:center 30%;transform:scale(1.015)}
.room-rental-hero__shade{background:linear-gradient(90deg,rgba(5,9,11,.92) 0%,rgba(5,9,11,.66) 48%,rgba(5,9,11,.16) 100%),linear-gradient(0deg,rgba(5,9,11,.7),transparent 55%)}
.room-rental-hero__content{position:relative;z-index:1;color:#fff;padding-top:calc(var(--public-header-height) + 32px);padding-bottom:80px}
.room-rental-hero__content .eyebrow{color:#f0c6c8}
.room-rental-hero__content h1{max-width:850px;margin:.2em 0 .3em;font-size:clamp(3rem,7.2vw,7rem);line-height:.88;letter-spacing:-.055em}
.room-rental-hero__content>p:not(.eyebrow){max-width:670px;font-size:1.12rem;line-height:1.7;color:rgba(255,255,255,.82);margin:0 0 30px}
.room-rental-info{padding:100px 0 110px}
.room-rental-intro{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1fr);gap:70px;align-items:end;margin-bottom:56px}
.room-rental-intro h2,.room-rental-request h2{font-size:clamp(2.4rem,5vw,4.9rem);line-height:.98;letter-spacing:-.045em;margin:.15em 0 0}
.room-rental-intro>p{font-size:1.08rem;line-height:1.8;color:#505050;margin:0;max-width:650px}
.room-rental-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.room-rental-benefits article{background:#fff;padding:34px;border:1px solid rgba(0,0,0,.07);min-height:240px;display:flex;flex-direction:column}
.room-rental-benefits article>span{font-size:.72rem;letter-spacing:.18em;color:#a82f35;margin-bottom:auto}
.room-rental-benefits h3{font-size:1.35rem;margin:38px 0 9px}
.room-rental-benefits p{margin:0;color:#666;line-height:1.65}
.room-rental-request{padding:110px 0;background:#091014;color:#fff}
.room-rental-request__grid{display:grid;grid-template-columns:minmax(0,.7fr) minmax(520px,1fr);gap:90px;align-items:start}
.room-rental-request__copy{position:sticky;top:110px}
.room-rental-request__copy>p:not(.eyebrow){max-width:560px;color:rgba(255,255,255,.68);line-height:1.8}
.room-rental-contact-card{margin-top:38px;border-top:1px solid rgba(255,255,255,.12);padding-top:24px;display:grid;gap:10px}
.room-rental-contact-card strong{font-size:.76rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.52);margin-bottom:4px}
.room-rental-contact-card a{display:flex;align-items:center;gap:10px;color:#fff;text-decoration:none;font-size:1.02rem;width:max-content}
.room-rental-contact-card svg{width:18px;height:18px;color:#d2777b}
.room-rental-form-wrap{background:#fff;color:#111;padding:42px;box-shadow:0 30px 80px rgba(0,0,0,.2)}
.room-rental-form{display:grid;grid-template-columns:1fr 1fr;gap:22px 18px}
.room-rental-field{display:grid;gap:8px}
.room-rental-field--wide{grid-column:1/-1}
.room-rental-field>span{font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#333}
.room-rental-field small{font-weight:400;text-transform:none;letter-spacing:0;color:#888;margin-left:4px}
.room-rental-field input,.room-rental-field select,.room-rental-field textarea{width:100%;border:1px solid #d8d5cf;background:#f8f7f4;color:#161616;border-radius:0;padding:14px 15px;font:inherit;outline:none;transition:border-color .18s,box-shadow .18s,background .18s}
.room-rental-field textarea{resize:vertical;min-height:130px}
.room-rental-field input:focus,.room-rental-field select:focus,.room-rental-field textarea:focus{border-color:#a82f35;background:#fff;box-shadow:0 0 0 3px rgba(168,47,53,.09)}
.room-rental-form__foot{border-top:1px solid #ebe7e0;margin-top:4px;padding-top:22px;display:flex;justify-content:space-between;gap:28px;align-items:center}
.room-rental-form__foot p{margin:0;max-width:520px;color:#777;font-size:.82rem;line-height:1.55}
.room-rental-form__foot a{color:#8d252b}
.room-rental-form__foot .button{flex:0 0 auto}
.room-rental-hp{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.room-rental-success,.room-rental-error{padding:18px 20px;margin-bottom:22px;border-left:4px solid}
.room-rental-success{background:#eef7f0;border-color:#3b8d51;color:#214c2d}
.room-rental-success strong{display:block;margin-bottom:3px}.room-rental-success p{margin:0;line-height:1.55}
.room-rental-error{background:#fff0f0;border-color:#b83238;color:#762126}


/* v2.8.8 – Zimmer-FAQ Kontrastkorrektur */
.room-rental-page .room-rental-faq{background:var(--ink);color:var(--cream)}
.room-rental-page .room-rental-faq .section-heading{min-width:0;max-width:100%}
.room-rental-page .room-rental-faq .section-heading h2{max-width:100%;color:var(--cream);font-size:clamp(2.25rem,4vw,3.15rem);line-height:1.02;overflow-wrap:normal;word-break:normal;hyphens:none;text-wrap:balance}
.room-rental-page .room-rental-faq .section-heading__text{color:var(--cream-soft)}
.room-rental-page .room-rental-faq .faq__items summary h3{color:var(--cream);transition:color 180ms ease}
.room-rental-page .room-rental-faq .faq__items summary:hover h3,
.room-rental-page .room-rental-faq .faq__items details[open] summary h3{color:var(--gold-bright)}
.room-rental-page .room-rental-faq .faq__items details>p{color:rgba(245,232,216,.74)}
@media(max-width:900px){
  .room-rental-page .room-rental-faq .faq__grid{grid-template-columns:1fr;gap:46px}
  .room-rental-page .room-rental-faq .section-heading{max-width:650px}
}

/* Admin: Zimmeranfragen */
.admin-room-inquiries-intro{align-items:center}
.room-inquiry-list{display:grid;gap:16px;padding:20px}
.room-inquiry-card{border:1px solid #dfe3e5;background:#fff;border-left:4px solid #c9ced1;padding:22px}
.room-inquiry-card.is-new{border-left-color:#a82f35;background:#fffdfd}
.room-inquiry-card__head{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;padding-bottom:18px;border-bottom:1px solid #eceff0}
.room-inquiry-card__head h3{font-size:1.35rem;margin:4px 0 2px}.room-inquiry-card__head time{font-size:.78rem;color:#7d868b}
.room-inquiry-card__status{display:inline-block;font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;font-weight:800;color:#666}
.room-inquiry-card.is-new .room-inquiry-card__status{color:#a82f35}
.room-inquiry-card__actions{display:flex;gap:8px;flex-wrap:wrap}.room-inquiry-card__actions form{margin:0}
.room-inquiry-card__facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;padding:20px 0 2px}
.room-inquiry-card__facts div{min-width:0}.room-inquiry-card__facts span,.room-inquiry-card__message>span{display:block;font-size:.68rem;text-transform:uppercase;letter-spacing:.09em;color:#858d91;margin-bottom:5px}
.room-inquiry-card__facts strong,.room-inquiry-card__facts a{display:block;color:#1b2327;font-size:.92rem;overflow-wrap:anywhere}
.room-inquiry-card__message{margin-top:18px;background:#f6f7f7;padding:16px}.room-inquiry-card__message p{margin:0;line-height:1.65;color:#3e484d}

@media(max-width:900px){
  .room-rental-hero{min-height:560px}.room-rental-hero__content{padding-top:calc(var(--public-header-height) + 30px);padding-bottom:60px}
  .room-rental-intro{grid-template-columns:1fr;gap:24px}.room-rental-benefits{grid-template-columns:1fr}
  .room-rental-benefits article{min-height:180px}.room-rental-benefits h3{margin-top:24px}
  .room-rental-request__grid{grid-template-columns:1fr;gap:45px}.room-rental-request__copy{position:static}
  .room-rental-form-wrap{padding:28px}
  .room-inquiry-card__facts{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .room-rental-hero{min-height:520px}.room-rental-hero__image{background-position:center}
  .room-rental-hero__shade{background:linear-gradient(0deg,rgba(5,9,11,.92) 0%,rgba(5,9,11,.48) 75%,rgba(5,9,11,.25) 100%)}
  .room-rental-hero__content{padding-top:calc(var(--public-header-height) + 28px);padding-bottom:42px}.room-rental-hero__content h1{font-size:clamp(2.85rem,15vw,4.5rem)}
  .room-rental-info{padding:68px 0}.room-rental-request{padding:72px 0}
  .room-rental-form{grid-template-columns:1fr}.room-rental-field--wide{grid-column:auto}.room-rental-form-wrap{padding:22px 18px}
  .room-rental-form__foot{display:grid;gap:18px}.room-rental-form__foot .button{width:100%;justify-content:center}
  .room-inquiry-card__head{display:grid}.room-inquiry-card__actions{width:100%}.room-inquiry-card__facts{grid-template-columns:1fr}.room-inquiry-card{padding:18px}
}

/* v2.8.5 – DE/EN language switch */
.language-switch{display:inline-flex;align-items:center;gap:3px;margin-left:18px;padding:3px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(8,16,20,.55);backdrop-filter:blur(8px);flex:0 0 auto}
.language-switch a{min-width:34px;padding:7px 9px;border-radius:999px;color:rgba(245,232,216,.62);font-size:.68rem;font-weight:800;letter-spacing:.08em;text-align:center;text-decoration:none;transition:background .18s,color .18s}
.language-switch a:hover{color:var(--cream)}
.language-switch a.is-active{background:var(--cream);color:var(--ink)}
.language-switch--mobile{display:none;margin:28px 0 0;width:max-content}
@media(max-width:1100px){.language-switch{margin-left:12px}.language-switch a{min-width:31px;padding:6px 8px}}
@media(max-width:760px){.language-switch{margin-left:auto;margin-right:12px}.language-switch--mobile{display:inline-flex;margin:28px 0 0}.mobile-menu-php .language-switch--mobile{margin-right:0}}

/* v2.9.0 – Zimmer-CRM, Erinnerungen & Profilstatistik */
.room-crm-kpis{margin:0 0 18px}
.room-inquiry-card--contacted{border-left-color:#b99045}
.room-inquiry-card--viewing{border-left-color:#647fa3}
.room-inquiry-card--done{border-left-color:#4f8a64}
.room-inquiry-card--cancelled{border-left-color:#8f9295;opacity:.82}
.room-inquiry-crm-form{display:grid;grid-template-columns:minmax(180px,.38fr) minmax(260px,1fr) auto;gap:14px;align-items:end;margin-top:18px;padding:18px;background:#f7f6f3;border:1px solid #e8e3dc}
.room-inquiry-crm-form label{display:grid;gap:7px;min-width:0}
.room-inquiry-crm-form label>span{font-size:.66rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#77716b}
.room-inquiry-crm-form select,.room-inquiry-crm-form textarea{width:100%;border:1px solid #d8d3cc;background:#fff;color:#1b2327;padding:11px 12px;font:inherit;outline:none}
.room-inquiry-crm-form textarea{min-height:78px;resize:vertical}
.room-inquiry-crm-form select:focus,.room-inquiry-crm-form textarea:focus{border-color:#a82f35;box-shadow:0 0 0 3px rgba(168,47,53,.08)}
.room-inquiry-crm-form>.admin-button{min-height:44px}

.admin-upcoming-reminders{margin:0 0 18px;border:1px solid #e1ddd6;background:#fff}
.admin-upcoming-reminders>header{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;padding:22px 24px;border-bottom:1px solid #eeeae5}
.admin-upcoming-reminders>header h2{margin:2px 0 6px;font-family:Georgia,serif;font-size:1.55rem;font-weight:400}
.admin-upcoming-reminders>header p:not(.admin-kicker){max-width:760px;margin:0;color:#7b756e;line-height:1.55}
.admin-upcoming-reminders>header>span{flex:0 0 auto;padding:6px 9px;border-radius:999px;background:#f2ede6;color:#8b5b1f;font-size:.68rem;font-weight:800}
.admin-upcoming-reminders__list{display:grid}
.admin-upcoming-reminders__list article{display:grid;grid-template-columns:48px minmax(0,1fr) auto;gap:13px;align-items:center;padding:13px 20px;border-bottom:1px solid #f0ede8}
.admin-upcoming-reminders__list article:last-child{border-bottom:0}
.admin-upcoming-reminders__list article.is-urgent{background:#fff8ef}
.admin-upcoming-reminders__list img,.admin-upcoming-reminders__list .admin-avatar{width:48px;height:48px;object-fit:cover;border-radius:50%}
.admin-upcoming-reminders__list div{display:grid;gap:3px}
.admin-upcoming-reminders__list strong{font-size:.9rem}.admin-upcoming-reminders__list small{color:#8b837b;font-size:.68rem}
.admin-upcoming-reminders__list article.is-urgent small{color:#a05f18;font-weight:800}

.profile-analytics-panel{margin-bottom:18px}
.profile-analytics-kpis{grid-template-columns:repeat(3,minmax(0,1fr))}
.profile-analytics-kpis article>span{white-space:nowrap}
.profile-analytics-kpi--name>strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:clamp(1.35rem,2.5vw,2.15rem)!important}
.profile-analytics-table-wrap{overflow-x:auto}
.profile-analytics-table{min-width:870px}
.profile-analytics-table--ranking{min-width:870px}
.profile-analytics-table__head,.profile-analytics-table__row{display:grid;gap:8px;align-items:center;padding:11px 16px;border-bottom:1px solid #eeeae5}
.profile-analytics-table--ranking .profile-analytics-table__head,.profile-analytics-table--ranking .profile-analytics-table__row{grid-template-columns:48px minmax(150px,1.4fr) 94px 68px 68px minmax(124px,1fr) minmax(136px,1.1fr) 86px}
.profile-analytics-table__head{background:#faf9f7;color:#938b83;font-size:.61rem;text-transform:uppercase;letter-spacing:.045em}
.profile-analytics-table__head>*{min-width:0;white-space:nowrap}
.profile-analytics-table__head>span:first-child{text-align:center}
.profile-analytics-table__head>span:nth-child(n+4){text-align:right}
.profile-analytics-table__row{font-size:.72rem}
.profile-analytics-table__row>*{min-width:0}
.profile-analytics-person{display:flex;align-items:center;gap:10px;min-width:0;color:#1d2327;text-decoration:none}
.profile-analytics-person img,.profile-analytics-person i{width:38px;height:38px;flex:0 0 38px;border-radius:50%;object-fit:cover;background:#eee9e2}
.profile-analytics-person i{display:grid;place-items:center;color:#8e1820;font-style:normal;font-weight:800}
.profile-analytics-person strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.profile-status-cell{display:flex;align-items:center}
.profile-status-badge{display:inline-flex;padding:5px 7px;border-radius:999px;background:#f1efec;color:#6f6962;font-size:.58rem;font-weight:800;white-space:nowrap}
.profile-status-badge--active{background:#eaf4ed;color:#3f7652}.profile-status-badge--upcoming{background:#fff4df;color:#986525}.profile-status-badge--inactive{background:#f0f0f0;color:#777}
.profile-stat{display:grid;justify-items:end;gap:2px;text-align:right}
.profile-stat strong{font-size:.76rem;font-weight:800;line-height:1.15}
.profile-stat--rate strong{color:#8e1820}
.profile-stat__label{display:none}
.profile-stat__detail{overflow:hidden;max-width:100%;color:#999189;font-size:.53rem;line-height:1.2;text-overflow:ellipsis;white-space:nowrap}

.profile-ranking-note{padding:10px 16px;border-bottom:1px solid #eeeae5;background:#fffdf9;color:#817970;font-size:.66rem}
.profile-rank{display:flex;justify-content:center;text-align:center}
.profile-rank b{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:#f0ece6;color:#756d66;font-size:.82rem;font-weight:900}
.profile-ranking-row--top{background:linear-gradient(90deg,rgba(142,24,32,.045),transparent 45%)}
.profile-ranking-row--1 .profile-rank b{background:#caa85e;color:#fff;box-shadow:0 4px 12px rgba(202,168,94,.28)}
.profile-ranking-row--2 .profile-rank b{background:#a8adb3;color:#fff}
.profile-ranking-row--3 .profile-rank b{background:#b87846;color:#fff}
.profile-ranking-row--1 .profile-analytics-person strong{color:#8e1820}

@media(max-width:900px){
  .room-inquiry-crm-form{grid-template-columns:1fr 1fr}.room-inquiry-crm-form__note{grid-column:1/-1}.room-inquiry-crm-form>.admin-button{grid-column:1/-1}
  .profile-analytics-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
  .profile-analytics-table-wrap{overflow:visible}
  .profile-analytics-table--ranking{min-width:0;padding:10px;background:#f5f2ed}
  .profile-analytics-table--ranking .profile-analytics-table__head{display:none}
  .profile-analytics-table--ranking .profile-analytics-table__row{position:relative;grid-template-columns:repeat(2,minmax(0,1fr));grid-template-areas:"person status" "views visitors" "favorites contacts" "rate rate";gap:9px 10px;margin:0;padding:14px;border:1px solid #e4dfd8;border-radius:10px;background:#fff;box-shadow:0 3px 12px rgba(29,35,39,.035)}
  .profile-analytics-table--ranking .profile-analytics-table__row+.profile-analytics-table__row{margin-top:10px}
  .profile-rank{position:absolute;z-index:1;top:17px;left:14px}
  .profile-analytics-person{grid-area:person;min-height:38px;padding-left:42px}
  .profile-status-cell{grid-area:status;justify-content:flex-end}
  .profile-stat{min-height:58px;align-content:center;justify-items:start;padding:9px 11px;border-radius:8px;background:#f8f6f2;text-align:left}
  .profile-stat--views{grid-area:views}.profile-stat--visitors{grid-area:visitors}.profile-stat--favorites{grid-area:favorites}.profile-stat--contacts{grid-area:contacts}.profile-stat--rate{grid-area:rate}
  .profile-stat strong{font-size:.9rem}
  .profile-stat__label{display:block;color:#938b83;font-size:.53rem;font-weight:800;letter-spacing:.06em;line-height:1.1;text-transform:uppercase;white-space:nowrap}
  .profile-stat__detail{font-size:.57rem}
}
@media(max-width:620px){
  .room-crm-kpis{grid-template-columns:1fr 1fr}
  .admin-upcoming-reminders>header{display:grid;padding:18px}
  .admin-upcoming-reminders__list article{grid-template-columns:42px 1fr;padding:12px 15px}.admin-upcoming-reminders__list img,.admin-upcoming-reminders__list .admin-avatar{width:42px;height:42px}.admin-upcoming-reminders__list .admin-button{grid-column:2;width:100%}
  .room-inquiry-crm-form{grid-template-columns:1fr;padding:14px}.room-inquiry-crm-form__note,.room-inquiry-crm-form>.admin-button{grid-column:auto}
}
@media(max-width:520px){
  .profile-analytics-table--ranking .profile-analytics-table__row{grid-template-areas:"person person" "status status" "views visitors" "favorites favorites" "contacts contacts" "rate rate"}
  .profile-status-cell{justify-content:flex-start;padding-left:42px}
}
@media(max-width:410px){
  .profile-analytics-kpis{grid-template-columns:1fr}
}

/* Event-Banner ist Bestandteil des Headers; Seiteninhalt erhält nur solange der Banner sichtbar ist zusätzlichen Abstand. */
.site-header--has-event{overflow:visible}
body.has-event-banner .hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 32px)}
body.has-event-banner .profile-hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 50px)}
body.has-event-banner .room-rental-hero__content{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 32px)}
body.has-event-banner .partner-hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 52px)}
body.has-event-banner .hero-cities{top:calc(var(--public-header-height) + var(--public-event-height) + 14px)}
@media(max-width:760px){:root{--public-event-height:68px}}
@media(max-width:590px){body.has-event-banner .hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 40px)}body.has-event-banner .profile-hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 28px)}body.has-event-banner .room-rental-hero__content{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 28px)}body.has-event-banner .partner-hero{padding-top:calc(var(--public-header-height) + var(--public-event-height) + 42px)}body.has-event-banner .hero-cities{top:calc(var(--public-header-height) + var(--public-event-height) + 10px)}}

/* v2.9.3 – Profil-Ranking */

/* v2.9.2 – Event Push / Promotion Module */
.event-banner{position:relative;z-index:1;border-bottom:1px solid rgba(236,192,141,.32);background:linear-gradient(100deg,#511218 0%,#78151d 45%,#291419 100%);color:#fff;box-shadow:0 14px 35px rgba(0,0,0,.18)}
.event-banner__inner{min-height:62px;display:flex;align-items:center;gap:20px;padding-block:10px}
.event-banner__mark{flex:0 0 auto;display:inline-flex;align-items:center;gap:8px;color:var(--gold-bright);font-size:.65rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.event-banner__mark span{width:7px;height:7px;border-radius:50%;background:var(--gold-bright);box-shadow:0 0 0 5px rgba(236,192,141,.12)}
.event-banner__copy{min-width:0;display:flex;align-items:baseline;gap:12px;flex:1}
.event-banner__copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:Georgia,"Times New Roman",serif;font-size:1.05rem;font-weight:400}
.event-banner__copy small{flex:0 0 auto;color:rgba(255,255,255,.66);font-size:.7rem}
.event-banner__cta{flex:0 0 auto;padding:9px 13px;border:1px solid rgba(236,192,141,.42);color:#fff;font-size:.7rem;font-weight:700;letter-spacing:.04em;transition:background .18s ease,border-color .18s ease}
.event-banner__cta:hover{background:rgba(236,192,141,.14);border-color:var(--gold-bright)}
.event-banner__close{flex:0 0 auto;width:34px;height:34px;border:0;background:transparent;color:rgba(255,255,255,.68);font-size:1.5rem;line-height:1;cursor:pointer}
.event-banner__close:hover{color:#fff}
.event-popup{position:fixed;z-index:90;inset:0;display:grid;place-items:center;padding:20px;background:rgba(2,7,9,.82);backdrop-filter:blur(10px);opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}
.event-popup.is-open{opacity:1;visibility:visible}
.event-popup__dialog{position:relative;width:min(900px,100%);max-height:min(760px,calc(100svh - 40px));overflow:auto;display:grid;grid-template-columns:minmax(260px,.82fr) minmax(0,1fr);background:#101b20;color:var(--cream);border:1px solid rgba(236,192,141,.34);box-shadow:0 35px 100px rgba(0,0,0,.6)}
.event-popup__dialog--no-image{grid-template-columns:1fr;width:min(650px,100%)}
.event-popup__image{min-height:100%;background:#0a1115;overflow:hidden}
.event-popup__image img{width:100%;height:100%;min-height:420px;object-fit:cover}
.event-popup__content{align-self:center;padding:clamp(34px,5vw,62px)}
.event-popup__content h2{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2rem,4.5vw,3.8rem);font-weight:400;letter-spacing:-.035em;line-height:1}
.event-popup__date{margin-top:17px;color:var(--gold-bright);font-size:.78rem;font-weight:700;letter-spacing:.04em}
.event-popup__text{margin:22px 0 0;color:rgba(245,232,216,.76);font-size:1rem;line-height:1.7}
.event-popup__cta{margin-top:28px;display:inline-flex}
.event-popup__close{position:absolute;z-index:2;top:14px;right:14px;width:42px;height:42px;border:1px solid rgba(255,255,255,.18);background:rgba(8,16,20,.7);color:#fff;font-size:1.8rem;font-weight:200;line-height:1;cursor:pointer;backdrop-filter:blur(6px)}
body.event-popup-open{overflow:hidden}

/* Event administration */
.admin-events-intro{margin-bottom:22px}
.admin-event-editor{margin-bottom:24px}
.admin-event-editor>header{align-items:center}
.admin-event-active{display:inline-flex!important;flex-direction:row!important;align-items:center;gap:9px!important;padding:9px 13px;border:1px solid #ddd8d1;border-radius:5px;background:#fff;font-weight:700!important}
.admin-event-active input{width:auto!important;margin:0!important}
.admin-event-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;padding:22px}
.admin-event-grid>label{display:grid;gap:7px;color:#564f49;font-size:.75rem;font-weight:700}
.admin-event-grid input,.admin-event-grid textarea,.admin-event-grid select{width:100%;padding:11px 12px;border:1px solid #d8d2ca;border-radius:4px;background:#fff;color:#26211e;font:inherit;font-weight:400}
.admin-event-grid textarea{resize:vertical;line-height:1.5}
.admin-event-grid small{font-weight:400;color:#8b8178}
.admin-event-span{grid-column:1/-1}
.admin-event-current-image{display:flex;align-items:center;gap:16px;padding:14px;border:1px solid #e0dbd5;background:#faf8f5}
.admin-event-current-image img{width:150px;aspect-ratio:16/9;object-fit:cover;border-radius:4px}
.admin-event-current-image label{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center;gap:8px!important}
.admin-event-current-image input{width:auto!important}
.admin-event-editor__footer{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 22px;border-top:1px solid #e4dfd8;background:#faf8f5}
.admin-event-editor__footer span{color:#81776e;font-size:.72rem;line-height:1.45}
.admin-events-list>header>span{color:#8b8178;font-size:.72rem}
.admin-event-list{display:grid}
.admin-event-list article{display:grid;grid-template-columns:72px minmax(0,1fr) auto auto;align-items:center;gap:14px;padding:13px 18px;border-top:1px solid #ebe6df}
.admin-event-list article>img,.admin-event-placeholder{width:72px;height:52px;object-fit:cover;border-radius:4px;background:#efe9e1}
.admin-event-placeholder{display:grid;place-items:center;color:#8e1820}
.admin-event-placeholder svg{width:22px;height:22px}
.admin-event-list__copy{min-width:0}
.admin-event-list__copy>div{display:flex;align-items:center;gap:10px}
.admin-event-list__copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.admin-event-list__copy small{display:block;margin-top:5px;color:#8a8178;font-size:.7rem}
.admin-event-status{display:inline-flex;padding:4px 7px;border-radius:99px;background:#eee9e3;color:#6b625a;font-size:.58rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.admin-event-status--jetzt-aktiv{background:#e2f2e7;color:#25643a}
.admin-event-status--geplant{background:#fff0d8;color:#8b5d19}
.admin-event-status--beendet{background:#ece9e5;color:#77706a}
.admin-event-status--deaktiviert{background:#f5e0e2;color:#8e1820}

@media(max-width:760px){
  .event-banner__inner{gap:10px;min-height:68px;padding-block:9px}
  .event-banner__mark{display:none}
  .event-banner__copy{display:block}
  .event-banner__copy strong{display:block;font-size:.94rem}
  .event-banner__copy small{display:block;margin-top:3px;font-size:.62rem}
  .event-banner__cta{padding:8px 9px;font-size:.62rem}
  .event-banner__close{width:28px}
  .event-popup{padding:12px}
  .event-popup__dialog{grid-template-columns:1fr;max-height:calc(100svh - 24px)}
  /* v3.0.58: Hochformatige Eventbilder wurden hier in ein 16:9-Fenster gezwungen und
     durch object-fit:cover oben und unten abgeschnitten. Jetzt bleibt das Bild
     vollstaendig sichtbar (contain) und ist in der Hoehe gedeckelt, damit Titel,
     Datum und Knopf ohne Scrollen darunter passen. */
  .event-popup__image{max-height:42svh;display:grid;place-items:center;padding:10px}
  .event-popup__image img{width:100%;height:auto;min-height:0;max-height:42svh;aspect-ratio:auto;object-fit:contain}
  .event-popup__content{padding:22px 20px 26px}
  .event-popup__content h2{font-size:clamp(1.6rem,7vw,2.2rem);line-height:1.08}
  .event-popup__date{margin-top:11px;font-size:.7rem}
  .event-popup__text{margin-top:14px;font-size:.88rem;line-height:1.6}
  .event-popup__cta{margin-top:20px}
  .event-popup__close{top:10px;right:10px;width:36px;height:36px;font-size:1.5rem}
  .admin-event-grid{grid-template-columns:1fr;padding:16px}
  .admin-event-span{grid-column:auto}
  .admin-event-current-image{align-items:flex-start;flex-direction:column}
  .admin-event-editor__footer{align-items:stretch;flex-direction:column}
  .admin-event-editor__footer .admin-button{width:100%}
  .admin-event-list article{grid-template-columns:58px minmax(0,1fr);gap:10px}
  .admin-event-list article>img,.admin-event-placeholder{width:58px;height:48px}
  .admin-event-list article>a,.admin-event-list article>form{grid-column:2}
  .admin-event-list article>a,.admin-event-list article>form .admin-button{width:100%}
}

/* v3.0 — Favoriten, Filter und zuletzt angesehen */
.girl-card-shell{position:relative;min-width:0}
.girl-card-shell .girl-card{height:100%}
.girl-card-shell[hidden]{display:none!important}
.girl-favorite{position:absolute;z-index:6;top:14px;right:14px;display:grid;width:46px;height:46px;place-items:center;border:1px solid rgba(255,255,255,.24);border-radius:50%;background:rgba(8,16,20,.76);color:#fff;font:700 1.42rem/1 Arial,sans-serif;cursor:pointer;backdrop-filter:blur(10px);transition:transform .18s ease,background .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease;isolation:isolate}
.girl-favorite:hover{transform:scale(1.07);border-color:var(--gold);color:var(--gold-bright)}
.girl-favorite.is-favorite{background:rgba(160,24,34,.96);border-color:rgba(255,225,191,.82);color:#fff;text-shadow:0 0 10px rgba(255,255,255,.72),0 0 18px rgba(255,78,91,.55);animation:favorite-heart-beat 1.15s ease-in-out infinite}
.profile-filters{grid-template-columns:1.4fr repeat(3,1fr) auto auto}
.profile-filter-toggles{display:flex;align-items:center;gap:8px;min-height:44px}
.profile-filter-chip{display:inline-flex!important;align-items:center;gap:7px;white-space:nowrap;border-radius:99px!important;padding-inline:13px!important}
.profile-filter-chip i{display:block;width:7px;height:7px;border-radius:50%;background:#62df91;box-shadow:0 0 0 4px rgba(98,223,145,.13)}
.profile-filter-chip.is-active,.profile-filter-chip[aria-pressed="true"]{border-color:var(--gold)!important;background:rgba(215,163,109,.12)!important;color:var(--cream)!important}
.recent-profiles{margin-top:34px;padding-top:24px;border-top:1px solid var(--line)}
.recent-profiles__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.recent-profiles__head .eyebrow{margin:0}
.recent-profiles__head button{border:0;background:transparent;color:rgba(245,232,216,.45);font-size:1.4rem;cursor:pointer}
.recent-profiles__list{display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
.recent-profiles__list a{flex:0 0 auto;display:flex;align-items:center;gap:10px;min-width:160px;padding:8px 12px 8px 8px;border:1px solid var(--line);background:rgba(255,255,255,.02)}
.recent-profiles__list img,.recent-profiles__list span{display:grid;width:42px;height:52px;place-items:center;object-fit:cover;object-position:center top;background:var(--panel);color:var(--gold);font-family:Georgia,serif}
.recent-profiles__list strong{font:400 .92rem Georgia,serif}
.profile-title-row{display:flex;align-items:center;gap:16px}
.profile-title-row h1{margin-right:auto}
.profile-favorite{flex:0 0 auto;display:grid;width:52px;height:52px;place-items:center;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--gold-bright);font:700 1.55rem/1 Arial,sans-serif;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,background .18s ease}
.profile-favorite.is-favorite{background:var(--wine);border-color:rgba(255,225,191,.78);color:#fff;box-shadow:0 0 0 4px rgba(235,190,137,.15),0 0 24px rgba(218,52,67,.5);text-shadow:0 0 12px rgba(255,255,255,.7);animation:favorite-heart-beat 1.15s ease-in-out infinite}
.profile-archived-notice{margin:18px 0;padding:16px 18px;border:1px solid rgba(215,163,109,.35);background:rgba(215,163,109,.08)}
.profile-archived-notice strong{display:block;color:var(--gold-bright);font-size:.85rem}
.profile-archived-notice p{margin:7px 0;color:var(--cream-soft);font-size:.8rem;line-height:1.55}
.profile-archived-notice a{color:var(--gold-bright);font-size:.75rem;font-weight:700}

/* v3.0 — Admin Tageszentrale */
.admin-dashboard-welcome{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px;padding:25px 28px;border:1px solid #dfd8cf;border-radius:12px;background:linear-gradient(125deg,#fff,#f8f3ec)}
.admin-dashboard-welcome h2{margin:2px 0 7px;font:400 1.8rem Georgia,serif}.admin-dashboard-welcome p{margin:0;color:#7e7871;font-size:.78rem;line-height:1.55}.admin-dashboard-welcome>span{color:#a36f3d;font-size:.72rem;white-space:nowrap}
.admin-stats--dashboard{grid-template-columns:repeat(6,1fr)}
.admin-stats--dashboard article{min-height:108px;padding:17px}
.admin-dashboard-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:20px;margin-bottom:20px}
.admin-dashboard-grid>.admin-panel{min-width:0}
.admin-panel>header>a{color:#9c7a55;font-size:.68rem;font-weight:700}
.dashboard-presence-form{padding:16px 20px 20px}.dashboard-presence-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:14px}
.dashboard-presence-grid label{position:relative;cursor:pointer}.dashboard-presence-grid input{position:absolute;opacity:0;pointer-events:none}.dashboard-presence-grid span{display:flex;align-items:center;gap:8px;min-height:48px;padding:6px 9px;border:1px solid #e5e1db;border-radius:8px;background:#faf9f7;transition:.18s ease}.dashboard-presence-grid input:checked+span{border-color:#77b891;background:#eff8f2;box-shadow:inset 3px 0 #4dac72}.dashboard-presence-grid img,.dashboard-presence-grid i{display:grid;width:31px;height:35px;place-items:center;border-radius:5px;object-fit:cover;object-position:center top;background:#eee3d7;color:#8e5d31;font:400 .85rem Georgia,serif}.dashboard-presence-grid strong{font-size:.7rem}
.admin-dashboard-empty{padding:24px;color:#807a73}.admin-dashboard-empty strong{display:block;color:#45413d;font-size:.82rem}.admin-dashboard-empty p{margin:6px 0 14px;font-size:.72rem;line-height:1.5}
.admin-dashboard-inquiries>a{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:12px 18px;border-bottom:1px solid #efede9}.admin-dashboard-inquiries>a:last-child{border-bottom:0}.admin-dashboard-inquiries div{display:grid}.admin-dashboard-inquiries strong{font-size:.75rem}.admin-dashboard-inquiries small,.admin-dashboard-inquiries time{color:#918a83;font-size:.62rem}.crm-stage{padding:5px 7px;border-radius:99px;background:#eee;color:#6f6b66;font-size:.56rem;font-weight:700}.crm-stage--new{background:#fff0d9;color:#976119}.crm-stage--contacted{background:#eaf2ff;color:#466f9e}.crm-stage--viewing{background:#f3ebff;color:#7956a0}.crm-stage--done{background:#e7f6ec;color:#3b8156}.crm-stage--cancelled{background:#f4e8e8;color:#955555}
.admin-dashboard-event{display:grid;grid-template-columns:130px 1fr;min-height:180px}.admin-dashboard-event img{width:100%;height:100%;object-fit:cover}.admin-dashboard-event>div{padding:22px}.admin-dashboard-event span{color:#4b9d67;font-size:.58rem;font-weight:800;letter-spacing:.12em}.admin-dashboard-event h3{margin:8px 0;font:400 1.25rem Georgia,serif}.admin-dashboard-event p{color:#85817b;font-size:.7rem}.admin-dashboard-event a{color:#a36f3d;font-size:.7rem;font-weight:700}
.admin-dashboard-activity{margin-top:20px}.admin-activity-list>div{display:grid;grid-template-columns:10px 1fr auto;align-items:center;gap:12px;padding:11px 20px;border-bottom:1px solid #efede9}.admin-activity-list>div:last-child{border-bottom:0}.admin-activity-dot{width:7px;height:7px;border-radius:50%;background:#b78a5d}.admin-activity-list div>div{display:grid}.admin-activity-list strong{font-size:.72rem}.admin-activity-list small,.admin-activity-list time{color:#96918b;font-size:.61rem}

/* v3.0 — Benutzer & System */
.admin-users-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:20px}.admin-user-list>a{display:flex;align-items:center;gap:11px;padding:12px 18px;border-bottom:1px solid #efede9}.admin-user-list>a.is-active{background:#fbf6ee}.admin-user-list>a>div{display:grid}.admin-user-list strong{font-size:.76rem}.admin-user-list small{color:#918b84;font-size:.62rem}.admin-user-list i{margin-left:auto;padding:4px 7px;border-radius:99px;font-size:.55rem;font-style:normal}.admin-user-list i.is-on{background:#e8f5ec;color:#377e50}.admin-user-list i.is-off{background:#f1ecec;color:#8b6161}.admin-user-form footer{display:flex;justify-content:flex-end;padding:16px 20px;border-top:1px solid #ebe8e3}
.admin-system-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:20px}.admin-system-grid article{display:grid;min-height:120px;align-content:center;padding:20px;border:1px solid #e0ddd7;border-radius:10px;background:#fff}.admin-system-grid span{color:#a36f3d;font-size:.58rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.admin-system-grid strong{margin:7px 0 3px;font:400 1.35rem Georgia,serif}.admin-system-grid small{color:#918b84;font-size:.65rem}.admin-backup-list>div{display:grid;grid-template-columns:1fr auto auto;gap:18px;padding:12px 20px;border-bottom:1px solid #efede9}.admin-backup-list strong{font-size:.72rem}.admin-backup-list span,.admin-backup-list small{color:#918b84;font-size:.64rem}

@media(max-width:1100px){.admin-stats--dashboard{grid-template-columns:repeat(3,1fr)}.admin-dashboard-grid{grid-template-columns:1fr}.admin-system-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.profile-filters{grid-template-columns:repeat(2,1fr)}.profile-filter-toggles{grid-column:1/-1}.admin-users-layout{grid-template-columns:1fr}.dashboard-presence-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.profile-filter-toggles{display:grid;grid-template-columns:1fr 1fr}.profile-filter-chip{justify-content:center}.girl-favorite{top:10px;right:10px;width:44px;height:44px;font-size:1.34rem}.profile-title-row{align-items:flex-start}.profile-favorite{width:48px;height:48px;font-size:1.45rem}.admin-dashboard-welcome{display:grid;padding:20px}.admin-stats--dashboard{grid-template-columns:1fr 1fr}.dashboard-presence-grid{grid-template-columns:1fr 1fr}.admin-system-grid{grid-template-columns:1fr}.admin-dashboard-event{grid-template-columns:90px 1fr}.admin-backup-list>div{grid-template-columns:1fr}.admin-backup-list span,.admin-backup-list small{margin-top:-10px}.admin-activity-list>div{grid-template-columns:8px 1fr}.admin-activity-list time{grid-column:2}}
/* v3.0 — Service/Neu-Filter */
.profile-filters{grid-template-columns:1.3fr repeat(4,1fr) auto auto}
.girl-card__new{position:absolute;z-index:4;top:14px;left:14px;display:inline-flex;align-items:center;gap:7px;padding:6px 11px;border:1px solid rgba(228,190,142,.38);border-radius:999px;background:rgba(10,18,22,.62);color:var(--gold-bright);font-size:.6rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;backdrop-filter:blur(10px);box-shadow:0 6px 18px rgba(0,0,0,.28)}
.girl-card__presence + .girl-card__new{top:50px}
@media(max-width:900px){.profile-filters{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.girl-card__new{top:10px;left:10px;padding:6px 8px;font-size:.56rem}.girl-card__presence + .girl-card__new{top:44px}}


/* v3.0.8 — Neu-Markierung unabhängig vom Profilstatus */
.profile-filters{grid-template-columns:1.3fr repeat(4,1fr) auto auto}
.button--disabled{opacity:.58;cursor:default;pointer-events:none;filter:saturate(.55)}
.arrival-card--locked{cursor:default}
.arrival-card--locked:hover{transform:none}
.profile-status-badge--new{background:#f3e6cf!important;color:#8b5a20!important}
.girl-card--locked{cursor:default}
.girl-card--locked:hover{background:rgba(255,255,255,.012)}
.girl-card--locked.girl-card--image:hover .girl-card__image{transform:none;filter:saturate(.88)}
@media(max-width:900px){.profile-filters{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.girl-card__new{top:10px;left:10px;padding:6px 8px;font-size:.56rem}}

.arrival-card__new{position:absolute;z-index:3;top:14px;left:14px;padding:7px 10px;border:1px solid rgba(228,190,142,.36);border-radius:999px;background:rgba(21,31,36,.82);color:var(--gold-bright);font-size:.62rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;backdrop-filter:blur(8px)}

.admin-check.is-disabled{opacity:.45}

/* v3.0.48 – Abreise-Countdown entfernt (Feld raus aus Admin und Anzeige). */


/* v3.0.14 – mobile girl grid adapts to current in-house count */
@media (max-width: 590px) {
  .girls-grid.girls-grid--mobile-single { grid-template-columns: 1fr; }
}

@keyframes profile-swipe-nudge {
  0%,100% { transform: translateX(0); }
  45% { transform: translateX(4px); }
  70% { transform: translateX(-2px); }
}

/* v3.0.18 – stärkerer Favoriten-Glow + pulsierendes Herz */
.profile-filter-shell{position:relative;margin-top:34px}
.profile-filter-bar{display:flex;align-items:center;gap:10px;padding:10px 12px;border:1px solid rgba(245,232,216,.13);background:rgba(255,255,255,.018)}
.profile-filter-quick{display:flex;align-items:center;gap:6px;min-width:0}
.profile-quick-chip,.profile-filter-open{display:inline-flex;min-height:38px;align-items:center;justify-content:center;gap:6px;padding:8px 12px;border:1px solid transparent;border-radius:999px;background:transparent;color:rgba(245,232,216,.64);font:inherit;font-size:.68rem;font-weight:700;line-height:1.1;letter-spacing:.025em;white-space:nowrap;cursor:pointer;transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease}
.profile-quick-chip:hover,.profile-filter-open:hover{border-color:rgba(215,163,109,.38);color:var(--cream)}
.profile-quick-chip.is-active,.profile-quick-chip[aria-pressed="true"]{border-color:rgba(215,163,109,.5);background:rgba(215,163,109,.12);color:var(--gold-bright)}
.profile-quick-chip--favorite.is-active,.profile-quick-chip--favorite[aria-pressed="true"]{border-color:rgba(170,42,49,.65);background:rgba(142,24,32,.22);color:#ffd8da}
.profile-filter-open{margin-left:auto;border-color:rgba(245,232,216,.18);background:rgba(8,16,20,.45);color:var(--cream)}
.profile-filter-open::before{content:"";width:12px;height:10px;background:linear-gradient(var(--gold-bright),var(--gold-bright)) 0 0/100% 1px no-repeat,linear-gradient(var(--gold-bright),var(--gold-bright)) 2px 50%/8px 1px no-repeat,linear-gradient(var(--gold-bright),var(--gold-bright)) 4px 100%/4px 1px no-repeat;opacity:.8}
.profile-filter-count{display:grid;min-width:20px;height:20px;place-items:center;padding:0 5px;border-radius:999px;background:var(--wine);color:#fff;font-size:.58rem}
.profile-filter-count[hidden]{display:none!important}
.profile-filter-bar>#profileResultCount{flex:0 0 auto;margin:0 0 0 4px;color:rgba(245,232,216,.38);font-size:.66rem;white-space:nowrap}
.profile-active-filters{display:flex;flex-wrap:wrap;gap:7px;margin-top:9px}
.profile-active-filters[hidden]{display:none!important}
.profile-active-filter{display:inline-flex;align-items:center;gap:7px;min-height:30px;padding:5px 9px 5px 11px;border:1px solid rgba(215,163,109,.3);border-radius:999px;background:rgba(215,163,109,.07);color:rgba(245,232,216,.78);font:inherit;font-size:.61rem;font-weight:600;line-height:1.2;cursor:pointer}
.profile-active-filter b{color:var(--gold-bright);font-size:.9rem;font-weight:400}
.profile-filter-backdrop{position:fixed;z-index:88;inset:0;background:rgba(2,7,9,.56);backdrop-filter:blur(3px)}
.profile-filter-backdrop[hidden],.profile-filter-panel[hidden]{display:none!important}
.profile-filter-panel{position:absolute;z-index:89;top:calc(100% + 10px);right:0;width:min(720px,100%);padding:18px;border:1px solid rgba(215,163,109,.28);background:#0d181d;box-shadow:0 24px 70px rgba(0,0,0,.42)}
.profile-filter-panel__head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px;padding-bottom:13px;border-bottom:1px solid var(--line)}
.profile-filter-panel__head>div{display:grid;gap:3px}
.profile-filter-panel__head .eyebrow{margin:0;font-size:.56rem}
.profile-filter-panel__head strong{color:var(--cream);font:400 1.1rem Georgia,serif}
.profile-filter-panel__close{display:grid;width:36px;height:36px;place-items:center;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--cream);font-size:1.35rem;cursor:pointer}
.profile-filter-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.profile-filter-fields label{display:grid;gap:6px}
.profile-filter-fields label:first-child{grid-column:1/-1}
.profile-filter-fields label>span{color:rgba(245,232,216,.46);font-size:.58rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase}
.profile-filter-fields input,.profile-filter-fields select{width:100%;min-height:44px;padding:9px 11px;border:1px solid var(--line);outline:none;background:#101c21;color:var(--cream);font:inherit;font-size:.78rem}
.profile-filter-fields input:focus,.profile-filter-fields select:focus{border-color:var(--gold)}
.profile-filter-panel__actions{display:flex;justify-content:flex-end;gap:9px;margin-top:16px;padding-top:14px;border-top:1px solid var(--line)}
.profile-filter-panel__actions button{min-height:40px;padding:8px 13px;border:1px solid var(--line);background:transparent;color:var(--gold-bright);font:inherit;font-size:.66rem;font-weight:700;line-height:1;cursor:pointer}
.profile-filter-panel__actions .profile-filter-apply{border-color:var(--wine);background:var(--wine);color:#fff}
.profile-filter-shell+.girls-grid{margin-top:14px}
body.profile-filter-panel-open{overflow:hidden}

.girl-card-shell.is-favorite-card{z-index:2;box-shadow:0 0 0 2px rgba(229,177,118,.72),0 0 24px rgba(183,35,48,.46),0 0 52px rgba(126,24,33,.26);animation:favorite-card-pulse 1.9s ease-in-out infinite}
.girl-card-shell.is-favorite-card .girl-favorite{box-shadow:0 0 0 4px rgba(235,190,137,.18),0 0 18px rgba(255,88,101,.58),0 0 34px rgba(180,34,48,.5)}
.girl-card-shell.is-favorite-card .girl-favorite::before{content:"";position:absolute;z-index:-1;inset:-8px;border:1px solid rgba(239,192,139,.7);border-radius:50%;box-shadow:0 0 20px rgba(210,49,61,.48);opacity:.75;animation:favorite-heart-halo 1.15s ease-out infinite;pointer-events:none}
@keyframes favorite-card-pulse{0%,100%{box-shadow:0 0 0 2px rgba(229,177,118,.62),0 0 22px rgba(183,35,48,.4),0 0 42px rgba(126,24,33,.2)}50%{box-shadow:0 0 0 3px rgba(246,205,158,.95),0 0 38px rgba(218,52,67,.68),0 0 74px rgba(151,28,40,.38)}}
@keyframes favorite-heart-beat{0%,100%{transform:scale(1)}18%{transform:scale(1.18)}34%{transform:scale(1.04)}52%{transform:scale(1.14)}70%{transform:scale(1)}}
@keyframes favorite-heart-halo{0%{transform:scale(.82);opacity:.72}70%{transform:scale(1.38);opacity:0}100%{transform:scale(1.38);opacity:0}}
@media(prefers-reduced-motion:reduce){.girl-card-shell.is-favorite-card,.girl-favorite.is-favorite,.profile-favorite.is-favorite,.girl-card-shell.is-favorite-card .girl-favorite::before{animation:none}}

@media(max-width:720px){
  .profile-filter-shell{margin-top:24px}
  .profile-filter-bar{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;padding:8px}
  .profile-filter-quick{gap:3px;overflow-x:auto;scrollbar-width:none}
  .profile-filter-quick::-webkit-scrollbar{display:none}
  .profile-quick-chip{min-height:36px;padding:7px 10px;font-size:.62rem}
  .profile-quick-chip--favorite span{display:none}
  .profile-quick-chip--favorite{min-width:36px;padding-inline:8px;font-size:.88rem}
  .profile-filter-open{min-height:36px;margin:0;padding:7px 10px;font-size:.62rem}
  .profile-filter-bar>#profileResultCount{grid-column:1/-1;margin:0 4px 1px;font-size:.6rem}
  .profile-active-filters{gap:5px;margin-top:7px}
  .profile-active-filter{min-height:28px;padding:4px 8px 4px 9px;font-size:.57rem}
  .profile-filter-panel{position:fixed;z-index:89;top:auto;right:0;bottom:0;left:0;width:100%;max-height:min(82vh,720px);overflow-y:auto;padding:18px 16px calc(18px + env(safe-area-inset-bottom));border-width:1px 0 0;border-radius:18px 18px 0 0;box-shadow:0 -22px 60px rgba(0,0,0,.44)}
  .profile-filter-panel__head{position:sticky;z-index:2;top:-18px;margin:-18px -16px 16px;padding:18px 16px 13px;background:#0d181d}
  .profile-filter-fields{grid-template-columns:1fr}
  .profile-filter-fields label:first-child{grid-column:auto}
  .profile-filter-panel__actions{position:sticky;bottom:calc(-18px - env(safe-area-inset-bottom));margin:16px -16px calc(-18px - env(safe-area-inset-bottom));padding:12px 16px calc(12px + env(safe-area-inset-bottom));background:#0d181d}
  .profile-filter-panel__actions button{flex:1}
  .girl-card-shell.is-favorite-card{box-shadow:0 0 0 2px rgba(235,185,128,.78),0 0 28px rgba(201,43,57,.55),0 0 48px rgba(130,24,35,.3)}
}
/* v3.0.22: klarer Leerzustand für Schnell- und Detailfilter */
.profile-filter-empty{margin:18px 0 8px;padding:22px 24px;border:1px solid rgba(214,164,111,.22);background:rgba(255,255,255,.025);text-align:center}
.profile-filter-empty p{margin:0 0 12px;color:rgba(245,232,216,.72);font-size:.9rem}
.profile-filter-empty button{border:0;background:transparent;color:var(--gold-bright);font:inherit;font-weight:800;cursor:pointer;text-decoration:underline;text-underline-offset:4px}
.profile-filter-empty button:hover{color:#fff}

/* v3.0.25 · Partner v3.0.24 · Partner & Friends Friends */
.partner-page{background:#070d10;color:#f5f2ec;min-height:70vh}
.partner-hero{padding:calc(var(--public-header-height) + 52px) 0 76px;background:radial-gradient(circle at 78% 20%,rgba(171,31,49,.18),transparent 36%),linear-gradient(180deg,#0b1216 0%,#080d10 100%);border-bottom:1px solid rgba(216,180,126,.17)}
.partner-hero__inner{max-width:880px}
.partner-hero h1{margin:.15em 0 .25em;font-family:Georgia,'Times New Roman',serif;font-size:clamp(3rem,7vw,6.6rem);font-weight:400;line-height:.95;letter-spacing:-.045em}
.partner-hero__inner>p:last-child{max-width:680px;color:rgba(255,255,255,.72);font-size:1.08rem;line-height:1.75}
.partner-section{background:#f4f0e8;color:#161616}
.partner-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(420px,1fr));gap:22px;max-width:1080px;margin:0 auto}
.partner-card{min-height:0;background:#fff;border:1px solid rgba(16,16,16,.09);border-radius:3px;text-decoration:none;color:#151515;display:flex;flex-direction:column;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;overflow:hidden}
a.partner-card:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(0,0,0,.11);border-color:rgba(166,32,51,.28)}
.partner-card__logo{height:132px;padding:14px 18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#fff,#f7f4ee);border-bottom:1px solid rgba(16,16,16,.07)}
.partner-card__logo img{display:block;width:100%;height:100%;max-width:100%;object-fit:contain}
.partner-card__logo span{width:76px;height:76px;border-radius:50%;display:grid;place-items:center;background:#991f31;color:#fff;font:500 1.9rem/1 Georgia,serif}
.partner-card__body{flex:1;padding:17px 22px 19px;display:flex;align-items:flex-start;justify-content:space-between;gap:22px}
.partner-card__copy{min-width:0;max-width:760px}
.partner-card__body h2{font-size:1.1rem;margin:0;font-weight:700;letter-spacing:-.015em}
.partner-card__copy p{margin:7px 0 0;color:#555;line-height:1.6;font-size:.9rem}
.partner-card__body>span{font-size:.78rem;text-transform:uppercase;letter-spacing:.09em;color:#9e2638;white-space:nowrap;display:flex;align-items:center;gap:5px;padding-top:3px}
.partner-card__body svg{width:15px;height:15px}
.partner-become{margin-top:60px;padding:46px 46px 44px;border-radius:3px;border:1px solid rgba(216,180,126,.22);background:radial-gradient(circle at 82% 12%,rgba(171,31,49,.2),transparent 42%),linear-gradient(180deg,#0b1216,#080d10);color:#fff;display:grid;grid-template-columns:minmax(0,1.35fr) auto;align-items:center;gap:46px}
.partner-become::before{content:"";grid-column:1/-1;height:1px;margin-bottom:-14px;background:linear-gradient(90deg,rgba(216,180,126,.5),rgba(216,180,126,0) 62%)}
.partner-become__copy p.eyebrow{color:var(--gold-bright);margin:0}
.partner-become__copy>p:last-child{max-width:52ch;margin:14px 0 0;color:rgba(245,242,236,.66);font-size:.95rem;line-height:1.7}
.partner-become__actions{display:grid;justify-items:start;gap:12px}
.partner-become__actions>p{margin:0;color:rgba(245,242,236,.5);font-size:.78rem;letter-spacing:.02em}
.partner-become__actions>p a{color:var(--gold-bright);border-bottom:1px solid rgba(216,180,126,.35);text-decoration:none}
.partner-become__actions>p a:hover{border-bottom-color:var(--gold-bright)}
.partner-become h2{font-family:Georgia,'Times New Roman',serif;font-size:clamp(1.7rem,3.2vw,2.6rem);font-weight:400;line-height:1.1;margin:.18em 0 0}
.partner-empty{padding:54px;text-align:center;background:#fff;border:1px solid rgba(0,0,0,.08)}

.admin-partners-layout{display:grid;grid-template-columns:minmax(300px,.92fr) minmax(420px,1.08fr);gap:24px;align-items:start}
.admin-partner-list{display:grid;gap:8px;padding:4px 0}
.admin-partner-list__item{display:grid;grid-template-columns:62px minmax(0,1fr) auto;gap:14px;align-items:center;padding:11px 12px;border:1px solid rgba(255,255,255,.07);border-radius:10px;text-decoration:none;color:inherit;background:rgba(255,255,255,.025);transition:.18s ease}
.admin-partner-list__item:hover,.admin-partner-list__item.is-active{border-color:rgba(206,157,89,.42);background:rgba(206,157,89,.07)}
.admin-partner-thumb{width:62px;height:48px;border-radius:7px;background:#fff;display:grid;place-items:center;overflow:hidden;color:#8f2030;font-weight:800}
.admin-partner-thumb img{max-width:90%;max-height:88%;width:auto;height:auto;object-fit:contain}
.admin-partner-list__item>span:nth-child(2){min-width:0;display:flex;flex-direction:column;gap:4px}
.admin-partner-list__item strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.admin-partner-list__item small{opacity:.58;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.admin-partner-list__item i{font-style:normal;font-size:.72rem;text-transform:uppercase;letter-spacing:.07em;padding:5px 7px;border-radius:999px}
.admin-partner-list__item i.is-on{background:rgba(71,174,113,.14);color:#79d69c}.admin-partner-list__item i.is-off{background:rgba(255,255,255,.06);color:#8d9498}
.admin-partner-current{display:flex;align-items:center;gap:18px;padding:14px;border-radius:10px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.07)}
.admin-partner-current img{width:130px;height:82px;object-fit:contain;background:#fff;border-radius:8px;padding:8px}

@media(max-width:900px){
 .admin-partners-layout{grid-template-columns:1fr}
}
@media(max-width:620px){
 .partner-hero{padding:calc(var(--public-header-height) + 42px) 0 54px}
 .partner-grid{grid-template-columns:1fr;gap:18px}
 .partner-card__logo{height:104px;padding:12px 14px}
 .partner-card{display:flex;flex-direction:column}
 .partner-card__logo{min-height:0;padding:8px 10px;border-bottom:1px solid rgba(16,16,16,.07);border-right:0}

 .partner-card__body{align-items:flex-start;justify-content:center;flex-direction:column;padding:16px 18px 18px;gap:14px}
 .partner-card__copy p{font-size:.92rem;line-height:1.58}
 .partner-card__body>span{padding-top:0}
 .partner-become{margin-top:40px;padding:30px 22px 28px;grid-template-columns:1fr;gap:26px}
 .partner-become::before{margin-bottom:-8px}
 .partner-become__copy>p:last-child{font-size:.9rem}
}

/* v3.0.29 · Sonderöffnungszeiten */
.admin-special-hours > header { align-items: center; gap: 18px; }
.admin-special-hours > header .admin-field-help { margin: 7px 0 0; max-width: 760px; }
.admin-special-hours-list { display: grid; }
.admin-special-hours-row { display: grid; grid-template-columns: minmax(150px,.85fr) minmax(135px,.7fr) 120px 120px minmax(190px,1.35fr) auto; gap: 12px; align-items: end; padding: 16px 22px; border-top: 1px solid #ebe8e3; background: #fff; }
.admin-special-hours-row:first-child { border-top: 0; }
.admin-special-hours-row > label { display: grid; gap: 7px; color: #554f48; font-size: .69rem; font-weight: 700; }
.admin-special-hours-row label small { color: #9b948c; font-size: .58rem; font-weight: 400; }
.admin-special-hours-row input, .admin-special-hours-row select { width: 100%; min-height: 42px; padding: 9px 10px; border: 1px solid #d8d3cc; border-radius: 5px; outline: none; background: #fff; color: #182024; font: inherit; font-weight: 400; }
.admin-special-hours-row input:focus, .admin-special-hours-row select:focus { border-color: #a36f3d; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-special-hours-row.is-closed { background: #fbf8f5; }
.admin-special-hours-row.is-closed .admin-special-time { opacity: .38; }
.admin-special-hours-row .admin-settings-remove { align-self: end; min-height: 42px; }
.admin-special-hours-empty { padding: 24px 22px; color: #6d665f; }
.admin-special-hours-empty strong { display: block; color: #182024; margin-bottom: 4px; }
.admin-special-hours-empty p { margin: 0; font-size: .82rem; }
@media (max-width: 1120px) {
  .admin-special-hours-row { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .admin-special-hours-row .admin-special-note { grid-column: 1 / 4; }
}
@media (max-width: 720px) {
  .admin-special-hours > header { align-items: flex-start; }
  .admin-special-hours > header .admin-button { width: 100%; justify-content: center; }
  .admin-special-hours-row { grid-template-columns: 1fr 1fr; padding: 15px 16px; }
  .admin-special-hours-row .admin-special-note { grid-column: 1 / -1; }
  .admin-special-hours-row .admin-settings-remove { grid-column: 2; justify-self: end; }
}


/* v3.0.44 – ICIPARIS-Wortmarke: eine gemeinsame Grundlinie, Kerning-Ausgleich an den Nahtstellen.
   Das Wort ist in drei Spans zerlegt; dadurch verliert der Browser das Kerning der Paare I|P und P|A
   und rundet jede Span-Kante einzeln auf ganze Pixel – das war die sichtbare Verschiebung.
   --ici-wordmark-kern-ip / --ici-wordmark-kern-pa gleichen das aus und sind pro Kontext nachjustierbar. */
.ici-wordmark {
  --ici-wordmark-p-size: 1.06em;
  --ici-wordmark-kern-ip: -.012em;
  --ici-wordmark-kern-pa: -.042em;
  display: inline;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-kerning: normal;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 1;
}
.ici-wordmark__ici,
.ici-wordmark__p,
.ici-wordmark__aris {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 0;
  vertical-align: baseline;
}
.ici-wordmark__p,
.ici-wordmark__aris {
  color: var(--wine-bright, #b5212c);
}
.ici-wordmark__p {
  font-size: var(--ici-wordmark-p-size);
  margin-left: var(--ici-wordmark-kern-ip);
}
.ici-wordmark__aris {
  margin-left: var(--ici-wordmark-kern-pa);
}
h1 .ici-wordmark,
h2 .ici-wordmark,
h3 .ici-wordmark {
  --ici-wordmark-p-size: 1.075em;
  --ici-wordmark-kern-pa: -.05em;
}
.eyebrow .ici-wordmark {
  --ici-wordmark-p-size: 1.05em;
  --ici-wordmark-kern-ip: 0em;
  --ici-wordmark-kern-pa: -.018em;
}

/* v3.0.37 – KI-Textassistent für Girl-Kurzbeschreibungen */
.admin-ai-tagline { display: grid; gap: 9px; }
.admin-ai-tagline__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.admin-ai-tagline__head > label { display: grid; gap: 5px; color: #554f48; font-size: .72rem; font-weight: 700; letter-spacing: .035em; }
.admin-ai-tagline__head > label small { color: #999188; font-weight: 400; letter-spacing: 0; }
.admin-ai-tagline textarea { width: 100%; min-height: 96px; padding: 11px 12px; border: 1px solid #d8d3cc; border-radius: 5px; outline: none; background: #fff; color: #182024; font: inherit; font-weight: 400; line-height: 1.5; resize: vertical; }
.admin-ai-tagline textarea:focus { border-color: #a36f3d; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-ai-tagline__button { flex: 0 0 auto; white-space: nowrap; }
.admin-ai-tagline.is-loading textarea { opacity: .72; }
.admin-ai-tagline__status { min-height: 18px; color: #847d75; font-size: .68rem; line-height: 1.45; }
.admin-settings-row--ai { grid-template-columns: minmax(260px,1fr) auto; align-items: center; }
.admin-settings-row--ai-key { grid-template-columns: minmax(260px,1fr) minmax(260px,420px) auto; align-items: center; }
.admin-ai-key-ok { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 12px; border-radius: 999px; background: #edf8f0; color: #287040; font-size: .72rem; font-weight: 800; }
@media (max-width: 760px) {
  .admin-ai-tagline__head { align-items: stretch; flex-direction: column; }
  .admin-ai-tagline__button { width: 100%; justify-content: center; }
  .admin-settings-row--ai, .admin-settings-row--ai-key { grid-template-columns: 1fr; align-items: stretch; }
}

/* v3.0.44 – Aktivitätsprotokoll: Filterleiste, Archivtabelle und Seitenblättern. */
.admin-activity-total { display: grid; justify-items: end; gap: 2px; text-align: right; }
.admin-activity-total strong { color: #182024; font-size: 1.5rem; line-height: 1; }
.admin-activity-total small { color: #96918b; font-size: .66rem; }
.admin-activity-filter { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); align-items: end; gap: 12px; margin-top: 20px; padding: 18px 20px; border: 1px solid #e7e3dd; border-radius: 10px; background: #fff; }
.admin-activity-filter label { display: grid; gap: 5px; color: #554f48; font-size: .7rem; font-weight: 700; letter-spacing: .035em; }
.admin-activity-filter input, .admin-activity-filter select { width: 100%; padding: 9px 11px; border: 1px solid #d8d3cc; border-radius: 5px; outline: none; background: #fff; color: #182024; font: inherit; font-size: .8rem; font-weight: 400; }
.admin-activity-filter input:focus, .admin-activity-filter select:focus { border-color: #a36f3d; box-shadow: 0 0 0 3px rgba(163,111,61,.1); }
.admin-activity-filter__search { grid-column: span 2; }
.admin-activity-filter__actions { display: flex; gap: 8px; }
.admin-activity-archive { margin-top: 20px; }
.admin-activity-table { display: grid; }
.admin-activity-table__head, .admin-activity-table__row { display: grid; grid-template-columns: 130px minmax(120px, 1fr) minmax(150px, 1.1fr) minmax(160px, 1.6fr); align-items: center; gap: 14px; padding: 11px 20px; border-bottom: 1px solid #efede9; }
.admin-activity-table__head { color: #96918b; font-size: .6rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; background: #faf8f5; }
.admin-activity-table__row:last-child { border-bottom: 0; }
.admin-activity-table__row:nth-child(even) { background: #fcfbf9; }
.admin-activity-table time { color: #6d675f; font-size: .68rem; font-variant-numeric: tabular-nums; }
.admin-activity-table strong { color: #182024; font-size: .72rem; }
.admin-activity-table small { color: #7b746c; font-size: .66rem; line-height: 1.5; overflow-wrap: anywhere; }
.admin-activity-table small em { color: #b0a99f; font-style: normal; }
.admin-activity-user { display: flex; align-items: center; gap: 8px; color: #3c3730; font-size: .7rem; font-weight: 600; }
.admin-activity-dot--danger { background: #b5212c; }
.admin-activity-dot--muted { background: #c3bdb4; }
.admin-activity-dot--system { background: #4f7f9c; }
.admin-activity-pager { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 20px; border-top: 1px solid #efede9; color: #7b746c; font-size: .7rem; }
.admin-activity-pager .is-disabled { opacity: .4; pointer-events: none; }
.admin-activity-perpage { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: #96918b; font-size: .66rem; }
.admin-activity-perpage a { padding: 4px 9px; border: 1px solid #e0dbd4; border-radius: 999px; color: #7b746c; }
.admin-activity-perpage a.is-active { border-color: #a36f3d; background: #a36f3d; color: #fff; font-weight: 700; }
@media (max-width: 900px) {
  .admin-activity-filter__search { grid-column: 1 / -1; }
  .admin-activity-table__head { display: none; }
  .admin-activity-table__row { grid-template-columns: 1fr; gap: 5px; padding: 14px 18px; }
  .admin-activity-table__row time { order: 3; }
  .admin-settings-intro .admin-activity-total { justify-items: start; text-align: left; }
}

/* v3.0.46 – Städteleiste auf Mobil: statt schwebender Pille direkt über der
   Status-Pille ein durchgehendes Band unter dem Header, Städte gleichmäßig
   verteilt. Dazu mehr Kopfabstand im Hero, damit die Öffnungszeit Luft hat. */
@media (max-width: 720px) {
  .hero-cities {
    top: var(--public-header-height);
    left: 0;
    width: 100%;
    justify-content: flex-start;
    transform: none;
  }
  body.has-event-banner .hero-cities {
    top: calc(var(--public-header-height) + var(--public-event-height));
  }
  .hero-cities__bar {
    width: 100%;
    justify-content: space-around;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid rgba(245,232,216,.12);
    border-radius: 0;
    background: rgba(8,16,20,.78);
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
    font-size: .6rem;
    letter-spacing: .12em;
  }
  .hero-cities__bar>*+*::before { display: none; }
  .hero-cities__bar strong::after { margin-left: 6px; }
  .hero { padding-top: calc(var(--public-header-height) + 76px); }
  body.has-event-banner .hero { padding-top: calc(var(--public-header-height) + var(--public-event-height) + 76px); }
}

/* v3.0.47 – „Girls“ verschwindet aus der Textnavigation, solange der CTA-Button
   sichtbar ist und dasselbe Ziel hat. Unter 1080px wird der CTA ausgeblendet,
   dort kommt der Navigationspunkt zurück – es ist also immer genau einer da.
   Die Klasse setzen nur die Seiten, deren CTA wirklich zu den Girls führt
   (index, profile, partner). Auf zimmer-mieten.php und datenschutz.php zeigt
   der CTA woanders hin, deshalb bleibt „Girls“ dort in der Navigation. */
.desktop-nav a.nav-item--cta-dupe { display: none; }
@media (max-width: 1080px) {
  .desktop-nav a.nav-item--cta-dupe { display: inline-flex; align-items: center; }
}

/* v3.0.49 – Übersicht der Profil-Kürzel und ihrer Weiterleitungen. */
.admin-slug-list { display: grid; }
.admin-slug-list > div { display: grid; grid-template-columns: minmax(110px, 1fr) minmax(220px, 2.4fr) auto; align-items: center; gap: 14px; padding: 11px 20px; border-bottom: 1px solid #efede9; }
.admin-slug-list > div:last-child { border-bottom: 0; }
.admin-slug-list strong { color: #182024; font-size: .74rem; }
.admin-slug-list span { color: #6d675f; font-size: .68rem; overflow-wrap: anywhere; }
.admin-slug-list code { padding: 2px 6px; border-radius: 4px; background: #f2efea; font-size: .66rem; }
.admin-slug-list small { color: #96918b; font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; }
.admin-slug-list--redirects { border-top: 1px solid #e7e3dd; background: #fcfbf9; }
.admin-slug-list--redirects strong { color: #7b746c; font-weight: 600; }
@media (max-width: 760px) {
  .admin-slug-list > div { grid-template-columns: 1fr; gap: 5px; }
}

/* v3.0.57 – Sortierwahl in der Girls-Liste. */
.admin-sort-switch { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-right: 6px; }
.admin-sort-switch > span { margin-right: 2px; color: #96918b; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.admin-sort-switch a { padding: 5px 10px; border: 1px solid #e0dbd4; border-radius: 999px; color: #6d675f; font-size: .66rem; white-space: nowrap; }
.admin-sort-switch a:hover { border-color: #c9c1b6; color: #3c3730; }
.admin-sort-switch a.is-active { border-color: #a36f3d; background: #a36f3d; color: #fff; font-weight: 700; }
@media (max-width: 760px) {
  .admin-sort-switch { width: 100%; margin: 0 0 4px; }
  .admin-sort-switch > span { width: 100%; }
}

/* v3.0.60 – Umfangswahl in der Profilstatistik. */
.analytics-periods--scope { margin-top: 8px; }
.analytics-periods--scope a { font-size: .66rem; }

/* v3.0.63 – Aktionen in den Ankunfts-Erinnerungen.
   Die Selektoren sind bewusst lang: .admin-upcoming-reminders__list div und
   .admin-arrivals > div > div setzen display:grid und haben mit (0,1,1) bzw. (0,1,2)
   eine hoehere Spezifitaet als eine einzelne Klasse. Ohne den laengeren Selektor
   blieben die beiden Aktionen untereinander statt nebeneinander. */
.admin-upcoming-reminders__list > article > .admin-upcoming-reminders__actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap;
}
.admin-upcoming-reminders__actions form { margin: 0; }
.admin-arrivals > div > .admin-arrivals__actions {
  display: flex; align-items: center; gap: 14px; margin-left: auto; flex: 0 0 auto;
}
.admin-arrivals__actions form { margin: 0; }
/* .admin-list__action bringt margin-left:auto mit – im Wrapper wuerde das die beiden
   Aktionen auseinanderreissen, der Wrapper selbst uebernimmt die Ausrichtung. */
.admin-arrivals > div > .admin-arrivals__actions .admin-list__action { margin-left: 0; }
.admin-list__action--go { border: 0; background: transparent; color: #a36f3d; font: inherit; font-size: .65rem; font-weight: 700; cursor: pointer; padding: 0; white-space: nowrap; }
.admin-list__action--go:hover { color: #7e5326; text-decoration: underline; }
@media (max-width: 620px) {
  .admin-upcoming-reminders__list > article > .admin-upcoming-reminders__actions { grid-column: 2; width: 100%; }
  .admin-upcoming-reminders__list > article > .admin-upcoming-reminders__actions > * { flex: 1; }
  .admin-upcoming-reminders__list > article > .admin-upcoming-reminders__actions .admin-button { width: 100%; }
  .admin-arrivals > div > .admin-arrivals__actions { gap: 10px; }
}

/* v3.0.64 – Download-Knopf je Sicherung. Die Liste ist ein Grid mit drei Spalten,
   deshalb hier ausdrücklich auf vier erweitert statt nur den Knopf zu stylen. */
.admin-backup-list > div { grid-template-columns: 1fr auto auto auto; align-items: center; }
.admin-backup-download { margin: 0; }
.admin-backup-download .admin-button { padding: 5px 11px; font-size: .64rem; }
@media (max-width: 560px) {
  .admin-backup-list > div { grid-template-columns: 1fr; }
  .admin-backup-download { margin-top: 8px; }
  .admin-backup-download .admin-button { width: 100%; }
}

/* v3.0.65 – Trichter, Tagesverlauf und Bindungskennzahlen in der Website-Statistik. */
.analytics-funnel__steps { display: grid; gap: 16px; padding: 20px 24px 24px; }
.analytics-funnel__steps article { display: grid; gap: 3px; }
.analytics-funnel__steps span { color: #96918b; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.analytics-funnel__steps strong { color: #182024; font: 400 1.9rem/1 Georgia, serif; }
.analytics-funnel__steps small { color: #7b746c; font-size: .68rem; }
.analytics-funnel__steps i { display: block; height: 7px; margin-top: 6px; border-radius: 99px; background: #efece7; overflow: hidden; }
.analytics-funnel__steps b { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #a36f3d, #c99a63); }

.analytics-rhythm__hours { display: grid; grid-template-columns: repeat(24, 1fr); align-items: end; gap: 3px; height: 130px; padding: 20px 24px 6px; }
.analytics-rhythm__hours span { display: grid; align-content: end; height: 100%; gap: 5px; }
.analytics-rhythm__hours b { display: block; width: 100%; min-height: 0; border-radius: 3px 3px 0 0; background: #a36f3d; }
.analytics-rhythm__hours em { color: #a8a29a; font-size: .52rem; font-style: normal; text-align: center; }
.analytics-rhythm__days { display: grid; gap: 7px; padding: 12px 24px 24px; border-top: 1px solid #efede9; margin-top: 10px; }
.analytics-rhythm__days article { display: grid; grid-template-columns: 34px 46px 1fr; align-items: center; gap: 10px; }
.analytics-rhythm__days strong { color: #3c3730; font-size: .68rem; }
.analytics-rhythm__days span { color: #7b746c; font-size: .66rem; font-variant-numeric: tabular-nums; }
.analytics-rhythm__days i { display: block; height: 7px; border-radius: 99px; background: #efece7; overflow: hidden; }
.analytics-rhythm__days b { display: block; height: 100%; border-radius: 99px; background: #a36f3d; }

.analytics-engagement__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; padding: 20px 24px 24px; }
.analytics-engagement__grid article { display: grid; gap: 3px; }
.analytics-engagement__grid span { color: #96918b; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.analytics-engagement__grid strong { color: #182024; font: 400 1.7rem/1 Georgia, serif; }
.analytics-engagement__grid small { color: #7b746c; font-size: .66rem; line-height: 1.5; }
@media (max-width: 620px) {
  .analytics-rhythm__hours { grid-template-columns: repeat(12, 1fr); height: 110px; }
  .analytics-rhythm__hours span:nth-child(even) { display: none; }
}
