/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:              #0C090F;
  --bg-card:         rgba(255, 255, 255, 0.04);
  --bg-card-hover:   rgba(255, 255, 255, 0.07);
  --border:          rgba(255, 255, 255, 0.08);
  --border-hover:    rgba(200, 21, 106, 0.4);

  --accent:          #C8156A;
  --accent-light:    #E91E8C;
  --accent-gradient: linear-gradient(103.86deg, #EC6090 0%, #662E7D 100%);

  --text:            #FFFFFF;
  --text-muted:      rgba(255, 255, 255, 0.55);
  --text-subtle:     rgba(255, 255, 255, 0.30);

  --font-heading:    'Manrope', system-ui, sans-serif;
  --font-body:       'Hanken Grotesk', system-ui, sans-serif;

  --radius-card:     16px;
  --radius-btn:      50px;

  --shadow-glow:     0 0 60px rgba(200, 21, 106, 0.15);
  --shadow-card:     0 8px 32px rgba(0, 0, 0, 0.5);

  --transition:      0.25s ease;

  --container:       1280px;
  --gutter:          clamp(16px, 4vw, 48px);
}

/* ── Reset / Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Global icon color — all SVGs using currentColor default to #FFB1C5 */
svg { color: #FFB1C5; }
/* Primary gradient buttons keep their own white icon */
.btn-cta--primary svg,
.btn-primary svg { color: inherit; }

body {
  background-color: #1C1018;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Layout Helpers ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Ambient Background Glow ────────────────────────────────────────────────── */
.pm-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pm-glow::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,21,106,0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(60px);
}
.pm-glow::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,10,71,0.15) 0%, transparent 70%);
  bottom: 0;
  right: -50px;
  filter: blur(80px);
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,21,106,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(200,21,106,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 12px;
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }

.btn-link {
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 0;
}
.btn-link:hover { color: var(--text); }

/* ── Glass Card ─────────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), background var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

/* ── Section Headings ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
}

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28, 16, 24, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
}
.site-logo__name {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 53px;
  letter-spacing: 14.4px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 640px) {
  .site-logo__name {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 8px;
  }
}
.site-logo__sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #DDBFC5;
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active,
.site-nav a.current-menu-item { color: var(--text); }

/* ── Burger button ──────────────────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ──────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-nav.is-open {
  pointer-events: auto;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 8, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: rgba(22, 12, 18, 0.97);
  border-left: 1px solid rgba(255, 177, 197, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--text); }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav__links a,
.mobile-nav__links li a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-nav__links a:hover,
.mobile-nav__links li a:hover,
.mobile-nav__links a.current-menu-item,
.mobile-nav__links li a.current-menu-item {
  color: var(--accent-light);
}
.mobile-nav__links ul { list-style: none; margin: 0; padding: 0; }

/* ── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero {
    min-height: 70svh;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* paint0: bottom → top (y1=716 → y2=0) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 16, 24, 0.2) 0%, rgba(28, 16, 24, 0.4) 50%, #1C1018 100%);
}
/* paint1: top → bottom (y1=0 → y2=716) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 16, 24, 0.2) 0%, rgba(28, 16, 24, 0.4) 50%, #1C1018 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px var(--gutter) 80px;
  max-width: 850px;
  width: 100%;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 24px;
}
.hero-address {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Models Section ──────────────────────────────────────────────────────────── */
.models-section {
  padding: 80px 0 100px;
}

.models-section__heading {
  text-align: center;
  margin-bottom: 52px;
}
.models-section__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
  margin-bottom: 16px;
}
.models-section__title .diamond-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.models-section__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Models Grid ─────────────────────────────────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Model Card ──────────────────────────────────────────────────────────────── */
.model-card {
  background: linear-gradient(135deg, rgba(36, 24, 32, 0.5) 0%, rgba(52, 38, 47, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.model-card__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  flex-shrink: 0;
}
.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.model-card:hover .model-card__image img { transform: scale(1.04); }

.model-card__body {
  padding: 30px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Badge — gradient text */
.model-card__badge {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: #FFB1C5;
}

/* Name */
.model-card__name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

/* Nationality / origin */
.model-card__origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #DDBFC5;
}
.model-card__origin svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Stats chips */
.model-card__stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stat-chip {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(63, 48, 58, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  display: flex;
  align-items: center;
  letter-spacing: 0.96px;
  color: #DDBFC5;
  white-space: nowrap;
}

/* CTA button — full width */
.model-card__cta {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 15px 20px;
  border-radius: 50px;
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,21,106,0.3);
  text-decoration: none;
}
.model-card__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,21,106,0.45);
}

.model-card__glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  pointer-events: none;
  z-index: 0;
}
.model-card__glow svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Booking CTA Section ────────────────────────────────────────────────────── */
.booking-cta-section {
  padding: 60px 0 80px;
}

.booking-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 142px 80px;
  background: linear-gradient(135deg, rgba(44, 22, 38, 0.72) 0%, rgba(60, 32, 54, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-cta-card::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 96, 144, 0.22) 0%, rgba(102, 46, 125, 0.12) 45%, transparent 70%);
  pointer-events: none;
}

.booking-cta__heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.booking-cta__lock-icon {
  width: 36px;
  height: 36px;
  color: #EC6090;
  flex-shrink: 0;
}

.booking-cta__title {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
  margin: 0;
}

.booking-cta__subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #DDBFC5;
  max-width: 520px;
  margin: 0 auto 48px;
}

.booking-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  border-radius: 100px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-cta--primary {
  background: linear-gradient(103.86deg, #EC6090 0%, #662E7D 100%);
  border: none;
  color: #fff;
}

.btn-cta--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-cta--outline {
  background: rgba(28, 16, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFB1C5;
}

.btn-cta--outline svg {
  color: #FFB1C5;
}

.btn-cta--outline:hover {
  border-color: rgba(255, 177, 197, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .booking-cta-card {
    padding: 48px 28px;
  }
  .btn-cta {
    padding: 14px 24px;
  }

  .section-title,
  .hero-title,
  .models-section__title,
  .booking-cta__title,
  .location-section__title,
  .model-hero__name {
    font-size: 32px;
    line-height: 1.2;
  }

  .booking-cta__heading-row,
  .models-section__title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ── Location Section ───────────────────────────────────────────────────────── */
.location-section {
  padding: 100px 0 180px;
}

.location-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.location-section__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
  margin-bottom: 20px;
}

.location-section__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.location-section__subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #DDBFC5;
  max-width: 560px;
  margin: 0 auto;
}

.location-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 24px;
  align-items: stretch;
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  display: block;
}

.location-card {
  background: rgba(28, 16, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0px 1px 1px 1px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-info-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.location-info-row__icon {
  padding-top: 2px;
}

.location-info-row__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.location-info-row__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 220, 233, 0.4);
  margin-bottom: 6px;
}

.location-info-row__value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #F4DCE9;
  font-style: normal;
}

.location-info-row__value a {
  color: inherit;
  text-decoration: none;
}

.location-info-row__value a:hover {
  color: #FFB1C5;
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-hours-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-hours-block__day {
  font-weight: 600;
  color: #F4DCE9;
  font-size: 16px;
  line-height: 24px;
}

.location-hours-block__time {
  font-weight: 400;
  color: rgba(244, 220, 233, 0.65);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 640px) {
  .location-section__title {
    font-size: 32px;
    line-height: 1.2;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .location-section__grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 260px;
  }
  .location-map iframe {
    min-height: 260px;
  }
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #160A13;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 1298px;
  height: 1381px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -908px;
  background: radial-gradient(74.09% 67.75% at 50% 50%, rgba(236, 96, 144, 0.18) 0%, rgba(236, 96, 144, 0) 70%);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand__name {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 53px;
  letter-spacing: 14.4px;
  text-transform: uppercase;
  color: #FFB1C5;
}

.footer-brand__copy {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 1.2px;
  color: #A58A90;
  max-width: 354px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col__heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col__link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #DDBFC5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col__link:hover {
  color: #FFB1C5;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-wrap: wrap;
    gap: 36px;
    padding: 48px 28px;
  }
  .footer-brand {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }
  .footer-brand {
    order: 10;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-brand__name {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 6px;
  }
}

/* ── Single Model Page ──────────────────────────────────────────────────────── */
.model-single {
  padding-top: 80px;
}

.model-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.model-hero__bg {
  position: absolute;
  left: 26%;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  flex: none;
  flex-grow: 0;
}
.model-hero__bg svg {
  width: 100%;
  max-width: 700px;
  height: 100%;
  display: block;
}
.model-hero > .container {
  position: relative;
  z-index: 1;
}
.model-hero__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 64px;
  align-items: flex-start;
}

/* Photo column */
.model-hero__photo-col {
  position: relative;
  flex-shrink: 0;
  width: 504px;
}
.model-hero__photo-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(102, 46, 125, 0.55) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.model-hero__photo-frame {
  position: relative;
  z-index: 1;
  background: rgba(28, 16, 24, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 0;
}
.model-hero__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* Info column */
.model-hero__info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.model-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.model-back-link:hover { color: var(--text); }

/* Available-from badge */
.model-hero__available {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: #FFB1C5;
}
.model-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #564146;
  flex-shrink: 0;
}

/* Name */
.model-hero__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 53px;
  letter-spacing: -0.96px;
  color: #F4DCE9;
  text-shadow: 0px 0px 20px rgba(255, 177, 197, 0.3);
  margin-bottom: 20px;
}

/* Meta grid — 2 columns */
.model-hero__meta-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.model-hero__meta-col {
  display: flex;
  flex-direction: column;
}

/* Meta rows */
.model-hero__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.model-hero__meta-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #DDBFC5;
}

/* Stats glass cards grid */
.model-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.model-stat-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 4.29px;
  width: 244px;
  background: rgba(28, 16, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  flex: none;
  flex-grow: 0;
}
.model-stat-card__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #DDBFC5;
}
.model-stat-card__value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

/* Mehr Info heading */
.model-hero__info-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.model-hero__desc-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #DDBFC5;
  margin-bottom: 36px;
}
.model-hero__desc-text p { margin-bottom: 16px; }

.model-hero__cta {
  margin-top: 8px;
}

/* Bio section */
.model-bio-section {
  padding: 0 0 60px;
}
.model-bio-content {
  max-width: 720px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.model-bio-content p { margin-bottom: 16px; }

/* ── Services Section ───────────────────────────────────────────────────────── */
.model-services-section {
  padding: 80px 0;
}
.model-services-section > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.model-services-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.model-services-heading__icon {
  flex-shrink: 0;
}

.model-services-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}

.model-service-group {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 48px;
  flex: 1;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(36, 24, 32, 0.5) 0%, rgba(52, 38, 47, 0.5) 100%);
  border: 1px solid rgba(255, 177, 197, 0.1);
  box-shadow: inset 0px 1px 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
}

.model-service-group__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #FFB1C5;
  text-align: center;
}

.model-service-group__chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px;
  align-self: stretch;
}

.model-service-chip {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #F4DCE9;
  white-space: nowrap;
}

.model-services-note {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.model-services-note__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #F4DCE9;
}
.model-services-note__text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #DDBFC5;
}
.model-services-note__more {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #DDBFC5;
  margin-top: -8px;
}
.model-services-note__link {
  color: #FFB1C5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.model-services-note__link:hover {
  color: #F4DCE9;
}

/* ── Gallery Section ─────────────────────────────────────────────────────────── */
.model-gallery-section {
  padding: 80px 0;
}
.model-gallery-section > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.model-gallery-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 34px;
  color: #F4DCE9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  align-self: stretch;
}

.model-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 272px);
  gap: 32px;
  justify-content: center;
  width: 100%;
}

.model-gallery-item {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}

.model-gallery-frame {
  box-sizing: border-box;
  background: rgba(28, 16, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  overflow: hidden;
  height: 357px;
}

.model-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.model-gallery-item:hover .model-gallery-frame img {
  transform: scale(1.05);
}

/* Back to profiles bottom link */
.model-back-bottom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
}
.model-back-bottom:hover {
  border-color: rgba(255, 177, 197, 0.5);
  color: #FFB1C5;
}
.model-back-bottom svg { flex-shrink: 0; color: inherit; }

/* ── Lightbox ────────────────────────────────────────────────────────────────── */
.pm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-lightbox[hidden] { display: none; }

.pm-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pm-lightbox__img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

.pm-lightbox__close,
.pm-lightbox__prev,
.pm-lightbox__next {
  position: absolute;
  z-index: 2;
  background: rgba(28, 16, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.pm-lightbox__close:hover,
.pm-lightbox__prev:hover,
.pm-lightbox__next:hover { background: rgba(200, 21, 106, 0.4); }

.pm-lightbox__close { top: 20px; right: 20px; }
.pm-lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.pm-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── Legal Page ──────────────────────────────────────────────────────────────── */
.legal-page {
  min-height: 100svh;
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
}
.legal-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.legal-card {
  background: rgba(28, 16, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 52px 56px 56px;
}
.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  margin: 0 0 48px;
  color: var(--text);
  text-align: center;
}
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0 14px;
  color: var(--text);
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}
.legal-body p,
.legal-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-body a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) {
  .legal-card {
    padding: 32px 24px 40px;
    border-radius: 16px;
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .model-hero__inner { flex-direction: column; gap: 40px; }
  .model-hero__photo-col { width: 100%; max-width: 560px; }
  .model-hero__name { font-size: 38px; line-height: 44px; }
  .model-stat-card { width: auto; flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 540px) {
  .model-stat-card { flex: 1 1 100%; }
  .model-hero__name { font-size: 32px; line-height: 38px; }
  .model-hero__available { letter-spacing: 2px; }
}
@media (max-width: 1200px) {
  .model-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (max-width: 1024px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .model-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .model-gallery-frame { height: 280px; }
  .model-gallery-heading { font-size: 32px; gap: 12px; }
  .model-services-grid { flex-direction: column; gap: 24px; }
  .model-service-group { min-height: unset; padding: 28px 24px; width: 100%; }
  .model-services-heading { font-size: 32px; gap: 12px; }
}
@media (max-width: 540px) {
  .models-grid { grid-template-columns: 1fr; }
  .model-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .model-gallery-frame { height: 220px; }
}
