/* ================================================================
   AMP ARTIST PROFILE v2 — Dark luxury theme
   Matches starclinch.com reference design
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Root Variables ── */
:root {
  --amp2-bg:         #0a0a0f;
  --amp2-card:       #111118;
  --amp2-card2:      #16161f;
  --amp2-border:     rgba(255,255,255,0.08);
  --amp2-text:       #e8e8f0;
  --amp2-muted:      rgba(232,232,240,0.55);
  --amp2-grad-a:     #ec4899;
  --amp2-grad-b:     #8b5cf6;
  --amp2-grad-c:     #3b82f6;
  --amp2-grad:       linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  --amp2-grad-subtle:linear-gradient(135deg, rgba(236,72,153,0.15), rgba(59,130,246,0.15));
  --amp2-btn-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
  --amp2-btn-padding: 8px 15px;
  --amp2-btn-radius: 35px;
  --amp2-radius:     20px;
  --amp2-font-head:  'Roboto', sans-serif;
  --amp2-font-body:  'Inter', sans-serif;
}

/* ── Base ── */
.amp-profile-v2 {
  font-family: var(--amp2-font-body);
  background: var(--amp2-bg);
  color: var(--amp2-text);
  max-width: 100%;
  padding: 0;
}

/* Apply Roboto bold weight for headings */
.amp-hero-v2__name,
.amp-section-title,
.amp-booking-section__title,
.amp-story-section__name,
.amp-price-val {
  font-family: var(--amp2-font-head);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.amp-gradient-text {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amp-section-title {
  font-family: var(--amp2-font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
  text-align: center;
}
.amp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 35px;
  padding: 8px 15px;
  font-family: var(--amp2-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
  white-space: nowrap;
}
.amp-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
}
.amp-btn-primary--sm { padding: 6px 12px; font-size: 0.85rem; }

.amp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--amp2-text);
  border: 1px solid rgba(236, 72, 153, 0.4);
  border-radius: 35px;
  padding: 8px 15px;
  font-family: var(--amp2-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.amp-btn-outline:hover {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}
.amp-btn-outline--sm { padding: 8px 15px; font-size: 0.82rem; }

.amp-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--amp2-border);
  border-radius: 10px;
  color: var(--amp2-text);
  font-family: var(--amp2-font-body);
  font-size: 0.9rem;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.amp-input:focus { outline: none; border-color: var(--amp2-grad-a); box-shadow: 0 0 0 3px rgba(232,82,74,0.2); }
.amp-input::placeholder { color: rgba(232,232,240,0.35); }
.amp-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(232,232,240,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.amp-select option { background: #1a1a24; color: var(--amp2-text); }
.amp-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--amp2-border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.82rem;
  color: var(--amp2-muted);
  white-space: nowrap;
}
.amp-tag--avail { border-color: rgba(52, 211, 153, 0.4); color: #34d399; }
.amp-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; display: inline-block; }
.amp-dot--pulse { animation: amp-pulse 2s ease-in-out infinite; }
@keyframes amp-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.8); }
}
.amp-required { color: var(--amp2-grad-a); }

/* ══════════════════════════════════════════════
   SECTION 1: HERO
══════════════════════════════════════════════ */
.amp-hero-v2 {
  position: relative;
  min-height: min(680px, 80svh);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 80px 5% 50px;
}
.amp-hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.amp-hero-v2__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: blur(2px) saturate(1.4);
}
.amp-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(232,82,74,0.12) 0%, transparent 70%),
              linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.95) 100%);
}
.amp-hero-v2__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}
.amp-hero-v2__meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.amp-badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
}
.amp-hero-v2__category {
  color: var(--amp2-grad-a);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.amp-hero-v2__name {
  font-family: var(--amp2-font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}
.amp-hero-v2__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--amp2-muted);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}
.amp-hero-v2__bio {
  color: var(--amp2-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: min(460px, 100%);
  overflow-wrap: break-word;
  word-break: break-word;
}
.amp-hero-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.amp-hero-v2__price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.amp-hero-v2__price { display: flex; flex-direction: column; gap: 2px; }
.amp-price-label { font-size: 0.78rem; color: var(--amp2-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.amp-price-val { font-family: var(--amp2-font-head); font-size: 1.8rem; color: #fff; letter-spacing: 0.04em; }
.amp-hero-v2__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Portrait */
.amp-hero-v2__portrait {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.amp-hero-v2__portrait-img {
  width: min(480px, 100%);
  height: auto;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
}
.amp-hero-v2__portrait-deco {
  position: absolute;
  right: 0; bottom: 0;
  width: 120%;
  height: 70%;
  background: repeating-linear-gradient(90deg, var(--amp2-grad-a) 0, var(--amp2-grad-a) 3px, transparent 3px, transparent 18px);
  opacity: 0.35;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 40%);
}

/* Floating action buttons */
.amp-hero-v2__actions {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amp-icon-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--amp2-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--amp2-text);
  transition: all 0.3s ease;
}
.amp-icon-btn:hover, .amp-icon-btn.active {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

/* ══════════════════════════════════════════════
   SECTION 2: MY STORY
══════════════════════════════════════════════ */
.amp-story-section {
  padding: 80px 5%;
  background: var(--amp2-bg);
}
.amp-story-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.amp-story-section__img-col { position: sticky; top: 100px; }
.amp-story-section__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.amp-story-section__text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.amp-story-section__text-col .amp-section-title { text-align: left; }
.amp-story-section__name {
  font-family: var(--amp2-font-head);
  font-size: 2.4rem;
  color: var(--amp2-grad-a);
  margin: 0;
  letter-spacing: 0.04em;
}
.amp-story-section__content {
  color: var(--amp2-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}
.amp-story-section__content p { margin: 0 0 1em; }
.amp-story-section__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.amp-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amp2-card);
  border: 1px solid var(--amp2-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--amp2-text);
}
.amp-detail-chip svg { color: var(--amp2-grad-a); flex-shrink: 0; }
.amp-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.amp-social-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.75;
}
.amp-social-icon:hover { transform: translateY(-2px); opacity: 1; }
.amp-social-yt  { background: #ff0000; color: #fff; }
.amp-social-ig  { background: linear-gradient(135deg, #405de6, #833ab4, #e1306c, #fd1d1d, #fcb045); color: #fff; }
.amp-social-fb  { background: #1877f2; color: #fff; }
.amp-social-web { background: var(--amp2-card2); border: 1px solid var(--amp2-border); color: var(--amp2-text); }

/* ══════════════════════════════════════════════
   SECTION 3: GALLERY — DUAL MARQUEE
══════════════════════════════════════════════ */
.amp-gallery-v2 {
  padding: 80px 0;
  background: var(--amp2-card);
  overflow: hidden;
}
.amp-gallery-v2__header {
  text-align: center;
  padding: 0 5% 40px;
}
.amp-marquee-track {
  overflow: hidden;
  margin-bottom: 16px;
}
.amp-marquee-track:last-child { margin-bottom: 0; }

.amp-marquee-inner {
  display: flex;
  gap: 14px;
  width: max-content;
}
.amp-marquee-ltr {
  animation: amp-scroll-ltr 35s linear infinite;
}
.amp-marquee-rtl {
  animation: amp-scroll-rtl 35s linear infinite;
}
.amp-marquee-track.is-paused .amp-marquee-inner {
  animation-play-state: paused;
}
@keyframes amp-scroll-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes amp-scroll-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.amp-marquee-item {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 320px);
  height: clamp(140px, 18vw, 220px);
  border-radius: 14px;
  overflow: hidden;
}
.amp-marquee-item a {
  display: block;
  width: 100%; height: 100%;
}
.amp-marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.amp-marquee-item:hover img { transform: scale(1.06); }

/* Lightbox */
.amp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.amp-lightbox.is-open { display: flex; }
.amp-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amp-lightbox__img {
  max-width: 100%; max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}
.amp-lightbox__close,
.amp-lightbox__prev,
.amp-lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}
.amp-lightbox__close:hover,
.amp-lightbox__prev:hover,
.amp-lightbox__next:hover { background: rgba(232,82,74,0.7); }
.amp-lightbox__close { top: 20px; right: 20px; }
.amp-lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.amp-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════════════════
   SECTION 4: PERFORMANCE DETAILS
══════════════════════════════════════════════ */
.amp-perf-details {
  padding: 80px 5%;
  background: var(--amp2-bg);
}
.amp-perf-details__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.amp-perf-details__grid {
  background: var(--amp2-card);
  border: 1px solid var(--amp2-border);
  border-radius: var(--amp2-radius);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}
.amp-perf-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-right: 1px solid var(--amp2-border);
  border-bottom: 1px solid var(--amp2-border);
  position: relative;
}
.amp-perf-card:last-child { border-right: none; }
.amp-perf-card--wide {
  grid-column: span 2;
}
.amp-perf-card__value {
  font-family: var(--amp2-font-head);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.amp-perf-card__value--sm { font-size: 1.1rem; font-family: var(--amp2-font-body); }
.amp-perf-card__value--avail { font-size: 1.1rem; font-family: var(--amp2-font-body); color: #34d399; }
.amp-perf-card__label {
  font-size: 0.8rem;
  color: var(--amp2-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.amp-lang-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}
.amp-lang-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--amp2-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amp2-text);
}

.amp-perf-card--avail-hide {
  display: none !important;
}

/* ══════════════════════════════════════════════
   SECTION 5: VIDEO MEDIA
══════════════════════════════════════════════ */
.amp-video-section {
  padding: 80px 5%;
  background: var(--amp2-card);
}
.amp-video-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.amp-video-section__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}
.amp-video-main {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.amp-video-main iframe,
.amp-video-main video {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.amp-video-fallback {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  color: var(--amp2-text);
  text-decoration: none;
  font-size: 1.1rem;
}
.amp-video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--amp2-border) transparent;
}
.amp-video-thumb {
  display: flex;
  flex-direction: column;
  background: var(--amp2-card2);
  border: 1px solid var(--amp2-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
  width: 100%;
}
.amp-video-thumb:hover, .amp-video-thumb.active {
  border-color: var(--amp2-grad-a);
  transform: translateX(-3px);
}
.amp-video-thumb img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.amp-video-thumb__placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: #1a1a24;
  display: flex; align-items: center; justify-content: center;
  color: var(--amp2-muted);
}
.amp-video-thumb__overlay {
  position: relative;
  margin-top: -36px;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.amp-play-btn-sm {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.amp-video-thumb__title {
  padding: 10px 12px 12px;
  font-size: 0.82rem;
  color: var(--amp2-muted);
  line-height: 1.4;
  margin: 0;
}
.amp-video-thumb:hover .amp-video-thumb__title,
.amp-video-thumb.active .amp-video-thumb__title { color: var(--amp2-text); }

/* ══════════════════════════════════════════════
   SECTION 6: RATE THIS ARTIST
══════════════════════════════════════════════ */
.amp-rate-section {
  display: block !important;
  padding: 80px 5%;
  background: var(--amp2-bg);
}
.amp-rate-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.amp-rate-box {
  border: 1px solid;
  border-image: linear-gradient(135deg, var(--amp2-grad-a), var(--amp2-grad-b)) 1;
  border-radius: var(--amp2-radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(232,82,74,0.06), transparent);
  /* fallback for border-image + radius */
  border: 1px solid rgba(232,82,74,0.35);
  border-radius: var(--amp2-radius);
}
.amp-rate-box__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.amp-rate-box__sub {
  color: var(--amp2-muted);
  font-size: 0.9rem;
  margin: 0;
}
.amp-rate-box__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.amp-star-rating { display: flex; gap: 4px; }
.amp-star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: rgba(255,255,255,0.2);
  transition: color 0.15s, transform 0.15s;
}
.amp-star svg { display: block; }
.amp-star.hovered, .amp-star.selected { color: #f59e0b; }
.amp-star.selected svg { fill: #f59e0b; }
.amp-star:hover { transform: scale(1.2); }

/* Review form */
.amp-review-form-wrap {
  background: var(--amp2-card);
  border: 1px solid var(--amp2-border);
  border-radius: var(--amp2-radius);
  padding: 32px;
}
.amp-review-form { display: flex; flex-direction: column; gap: 14px; }
.amp-review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.amp-review-form__actions { display: flex; gap: 12px; }
.amp-review-form__actions .amp-btn-primary,
.amp-review-form__actions button[type="submit"] {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  border-radius: 35px;
  padding: 8px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

/* Reviews grid */
.amp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.amp-review-card {
  background: var(--amp2-card);
  border: 1px solid var(--amp2-border);
  border-radius: 16px;
  padding: 24px;
}
.amp-review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.amp-review-card__avatar {
  width: 40px; height: 40px;
  background: var(--amp2-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.amp-review-card__name { font-weight: 600; font-size: 0.95rem; color: var(--amp2-text); display: block; }
.amp-review-card__stars { display: flex; gap: 2px; margin-top: 2px; }
.amp-review-card__text { color: var(--amp2-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════
   SECTION 7: GET IN TOUCH
══════════════════════════════════════════════ */
.amp-booking-section {
  padding: 80px 5%;
  background: var(--amp2-card);
}
.amp-booking-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.amp-booking-section__title {
  font-family: var(--amp2-font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 32px;
  letter-spacing: 0.06em;
}

/* Step progress */
.amp-step-progress { margin-bottom: 32px; }
.amp-step-progress__bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.amp-step-progress__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--amp2-grad);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.amp-step-progress__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
  position: absolute;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}
.amp-step-progress__dot[data-step="1"] { left: calc(50% - 7px); }
.amp-step-progress__dot[data-step="2"] { right: -7px; }
.amp-step-progress__dot--active { background: var(--amp2-grad-a); border-color: var(--amp2-grad-a); }
.amp-step-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--amp2-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Booking form */
.amp-booking-form { display: flex; flex-direction: column; gap: 16px; }
.amp-step { display: flex; flex-direction: column; gap: 16px; }
.amp-booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.amp-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.amp-field-group--full { grid-column: 1 / -1; }
.amp-field-group label { font-size: 0.82rem; color: var(--amp2-muted); letter-spacing: 0.04em; }
.amp-input-prefix {
  position: relative;
  display: flex;
  align-items: center;
}
.amp-input-prefix span {
  position: absolute;
  left: 14px;
  color: var(--amp2-muted);
  font-size: 0.9rem;
  z-index: 1;
  pointer-events: none;
}
.amp-input-prefix .amp-input { padding-left: 28px; }
.amp-btn-continue { align-self: center; min-width: 200px; justify-content: center; margin-top: 8px; }
.amp-booking-form__actions { display: flex; gap: 12px; align-items: center; }

/* Booking portrait */
.amp-booking-portrait-col {
  position: sticky;
  top: 100px;
  align-self: stretch;
}
.amp-booking-portrait {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  max-height: 700px;
  display: block;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.amp-faq-section {
  padding: 80px 5%;
  background: var(--amp2-bg);
}
.amp-faq-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.amp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.amp-faq-item {
  background: var(--amp2-card);
  border: 1px solid var(--amp2-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.amp-faq-item[open] { border-color: var(--amp2-grad-a); }
.amp-faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--amp2-text);
  user-select: none;
}
.amp-faq-item__q::-webkit-details-marker { display: none; }
.amp-faq-item__icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--amp2-grad-a);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.amp-faq-item__a {
  padding: 0 24px 20px;
  color: var(--amp2-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SIMILAR ARTISTS
══════════════════════════════════════════════ */
.amp-related-section {
  padding: 80px 5%;
  background: var(--amp2-card);
}
.amp-related-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.amp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.amp-related-card {
  background: var(--amp2-card2);
  border: 1px solid var(--amp2-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.amp-related-card__img-link { display: block; }
.amp-related-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.amp-related-card:hover .amp-related-card__img { transform: scale(1.04); }
.amp-related-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amp-related-card__body h3 { margin: 0; font-size: 1rem; }
.amp-related-card__body h3 a { color: var(--amp2-text); text-decoration: none; }
.amp-related-card__body h3 a:hover { color: var(--amp2-grad-a); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .amp-hero-v2 { grid-template-columns: 1fr; padding: 70px 5% 40px; min-height: auto; }
  .amp-hero-v2__portrait { display: none; }
  .amp-hero-v2__bg-img { opacity: 0.12; }
  .amp-story-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .amp-story-section__img-col { position: static; }
  .amp-story-section__portrait { aspect-ratio: 4/3; max-width: 480px; }
  .amp-perf-details__grid { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .amp-perf-card--wide { grid-column: span 2; }
  .amp-video-section__layout { grid-template-columns: 1fr; }
  .amp-video-sidebar { flex-direction: row; overflow-x: auto; max-height: none; }
  .amp-video-thumb { width: 200px; flex-shrink: 0; }
  .amp-booking-section__inner { grid-template-columns: 1fr; }
  .amp-booking-portrait-col { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  .amp-hero-v2 { padding: 70px 20px 40px; }
  .amp-hero-v2__name { font-size: 3rem; }
  .amp-story-section,
  .amp-gallery-v2,
  .amp-perf-details,
  .amp-video-section,
  .amp-rate-section,
  .amp-booking-section,
  .amp-faq-section,
  .amp-related-section { padding: 50px 20px; }
  .amp-perf-details__grid { grid-template-columns: 1fr 1fr; padding: 20px; }
  .amp-perf-card--wide { grid-column: span 2; }
  .amp-perf-card { padding: 20px 12px; }
  .amp-perf-card__value { font-size: 2rem; }
  .amp-booking-form__row { grid-template-columns: 1fr; }
  .amp-review-form__row { grid-template-columns: 1fr; }
  .amp-rate-box { flex-direction: column; align-items: flex-start; padding: 24px; }
  .amp-hero-v2__cta { flex-wrap: wrap; }
  .amp-hero-v2__actions { display: none; }
  .amp-marquee-item { width: clamp(160px, 55vw, 240px); height: 150px; }
  .amp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .amp-video-section__layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — Text overflow & layout
   Colors: ArtistHub brand gradient (pink→purple→blue)
═══════════════════════════════════════════════════ */

/* Global overflow safety */
.amp-profile-v2 * {
  box-sizing: border-box;
}
.amp-profile-v2,
.amp-profile-v2 section {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Hero text overflow fix */
.amp-hero-v2__bio {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.amp-hero-v2__name {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1;
}
.amp-hero-v2__tags {
  max-width: 100%;
  overflow: hidden;
}
.amp-tag {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}

/* Performance details — services text fix */
.amp-perf-card__value--sm {
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  line-height: 1.4;
  font-size: 0.95rem !important;
}

/* Section title overflow */
.amp-section-title,
.amp-booking-section__title {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Form inputs full width on mobile */
.amp-input,
.amp-select {
  max-width: 100%;
  width: 100%;
}

/* Similar artists grid — prevent overflow */
.amp-related-card__body h3 a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ArtistHub brand gradient color for section headings */
.amp-gradient-text,
.amp-section-title.amp-gradient-text,
.amp-booking-section__title.amp-gradient-text {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Badge crown — keep gold */
.amp-badge-crown {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

/* Hero category label */
.amp-hero-v2__category {
  color: #ec4899 !important;
}

/* Availability tag dot */
.amp-dot { background: #34d399; }

/* ── Mobile: 480px and below ── */
@media (max-width: 480px) {
  .amp-hero-v2 {
    padding: 60px 16px 32px;
  }
  .amp-hero-v2__name {
    font-size: 2.4rem;
  }
  .amp-hero-v2__bio {
    font-size: 0.9rem;
  }
  .amp-hero-v2__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .amp-hero-v2__cta {
    width: 100%;
  }
  .amp-btn-primary,
  .amp-btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 8px 15px;
    border-radius: 35px;
  }
  .amp-story-section,
  .amp-gallery-v2,
  .amp-perf-details,
  .amp-video-section,
  .amp-rate-section,
  .amp-booking-section,
  .amp-faq-section,
  .amp-related-section {
    padding: 40px 16px;
  }
  .amp-perf-details__grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 0;
  }
  .amp-perf-card {
    padding: 16px 8px;
  }
  .amp-perf-card__value {
    font-size: 1.6rem;
  }
  .amp-perf-card__label {
    font-size: 0.7rem;
  }
  .amp-perf-card--wide {
    grid-column: span 2;
  }
  .amp-lang-chip {
    font-size: 0.78rem;
    padding: 4px 10px;
  }
  .amp-rate-box {
    padding: 20px 16px;
    flex-direction: column;
  }
  .amp-star svg {
    width: 28px;
    height: 28px;
  }
  .amp-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .amp-booking-section__title {
    font-size: 2rem;
  }
  .amp-faq-item__q {
    padding: 16px;
    font-size: 0.88rem;
  }
  .amp-review-card {
    padding: 16px;
  }
  .amp-step-progress__labels {
    font-size: 0.68rem;
  }
}

/* ── Very small screens: 360px and below ── */
@media (max-width: 360px) {
  .amp-hero-v2__name { font-size: 2rem; }
  .amp-perf-details__grid { grid-template-columns: 1fr; }
  .amp-perf-card--wide { grid-column: span 1; }
  .amp-related-grid { grid-template-columns: 1fr; }
}
