:root {
  --ink: #241220;
  --ink-soft: #6b4f66;
  --cream: #fff8fb;
  --cream-dim: #fbeaf5;
  --accent: #ff2d78;
  --accent-dark: #c81763;
  --accent2: #7b2ff7;
  --gold: #ffc93c;
  --border: #f3d6e8;
  --radius: 14px;
  --max: 1100px;
  --rainbow: linear-gradient(90deg, #ff2d78, #ff8a3c, var(--gold), #34c98f, #3ca7ff, var(--accent2));
  --glam: linear-gradient(135deg, var(--accent), var(--accent2));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans Pro", "Open Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Anton", "Source Sans Pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.rainbow-bar {
  height: 5px;
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 251, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav .logo { font-family: "Anton", "Source Sans Pro", sans-serif; font-size: 30px; letter-spacing: 0.02em; }
.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav a.navlink {
  font-size: 14px;
  color: var(--ink-soft);
}
.nav a.navlink { position: relative; transition: color 0.2s ease; }
.nav a.navlink:hover { color: var(--accent); }
.nav a.navlink::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--glam);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav a.navlink:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--glam);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 45, 120, 0.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 24px rgba(123, 47, 247, 0.4); }
.btn-ghost-light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-paypal {
  background: #0070ba;
  border-color: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 112, 186, 0.4);
}
.btn-paypal svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-paypal:hover { transform: translateY(-2px) scale(1.03); background: #003087; box-shadow: 0 10px 24px rgba(0, 48, 135, 0.45); }
.btn-small { padding: 8px 18px; font-size: 13px; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url("assets/images/dahlia-header.jpg") center 30% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(123,47,247,0.18) 0%, rgba(36,18,32,0.8) 100%);
}
.hero-content {
  position: relative;
  color: #fff;
  padding-bottom: 72px;
  max-width: 640px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 88px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(255,45,120,0.55), 0 0 60px rgba(123,47,247,0.35);
}
.hero p {
  font-size: 17px;
  max-width: 480px;
  opacity: 0.92;
  margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Press strip */
.press {
  background: var(--cream-dim);
  border-bottom: 3px solid transparent;
  border-image: var(--rainbow) 1;
  padding: 20px 0;
}
.press .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.press-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-right: 6px;
}
.press span.item { font-size: 14px; color: var(--ink-soft); }
.press span.dot { color: var(--border); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 56px 0;
}
.stat {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(255,45,120,0.15); }
.stat .num {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  display: block;
  background: var(--glam);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Section headings */
section { padding: 72px 0; }
.section-head { margin-bottom: 36px; max-width: 640px; }
#testimonial .wrap { text-align: center; }
#testimonial .section-head { margin-left: auto; margin-right: auto; }
#testimonial .section-head h2::after { left: 50%; transform: translateX(-50%); }
.section-head h2 { font-size: 32px; margin-bottom: 14px; position: relative; padding-bottom: 14px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--rainbow);
}
.section-head p { color: var(--ink-soft); font-size: 15px; }
.section-alt { background: linear-gradient(180deg, var(--cream-dim), #fdf3fb); }

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.bio-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}
.bio-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15px; }
.bio-text a.more { color: var(--accent); font-size: 14px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(123,47,247,0.15); }
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glam);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}
.service-card:nth-child(2n) .icon { background: linear-gradient(135deg, var(--gold), var(--accent)); }
.service-card:nth-child(3n) .icon { background: linear-gradient(135deg, #34c98f, var(--accent2)); }
.service-card h3 { font-family: "Source Sans Pro", sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.gallery-grid a:hover { border-color: var(--accent); }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; }

/* Watch */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.video-embed {
  position: relative;
  flex: 1 1 320px;
  max-width: 340px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 10, 18, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--glam);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { transform: scale(1.08); }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 10, 18, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal-box h3 { font-size: 22px; margin: 0 0 20px; padding-right: 32px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--glam);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { transform: scale(1.08); }

.modal-box.schedule-box {
  background: var(--ink);
  max-width: 620px;
}
.schedule-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-box.schedule-box .schedule-title {
  font-size: 30px;
  color: var(--cream);
  margin: 0 0 24px;
  padding-right: 32px;
}
.schedule-list { list-style: none; margin: 0; padding: 0; }
.schedule-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-when {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  min-width: 96px;
  white-space: nowrap;
}
.schedule-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.schedule-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.schedule-what {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
.schedule-what strong {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule-what span {
  color: rgba(255, 248, 251, 0.65);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.modal-box form.booking { border: none; padding: 0; }

/* Music/social */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(255,45,120,0.15); }
.feature-card .icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature-card h3 { font-family: "Source Sans Pro", sans-serif; font-size: 18px; font-weight: 600; }
.feature-card p { color: var(--ink-soft); font-size: 14px; margin: 0 0 12px; }

/* Collaborators */
.logo-group + .logo-group { margin-top: 28px; }
.logo-group-label {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-cloud span {
  font-size: 14px;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.logo-cloud span:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}


/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-info h2 { font-size: 30px; margin-bottom: 14px; }
.contact-info p { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.social-row svg { width: 20px; height: 20px; display: block; fill: currentColor; }
.contact-info .social-row { display: flex; gap: 16px; color: #000; }
.contact-info .social-row a:hover { color: var(--accent); }

.testimonial-form {
  max-width: 640px;
}

form.booking {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
form.booking .btn { width: 100%; text-align: center; margin-top: 4px; }
form.booking .btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.form-status { font-size: 14px; margin: 0 0 16px; color: var(--ink); }
.form-status:empty { display: none; margin: 0; }
.form-status.error { color: var(--accent-dark); }

/* Footer */
footer {
  background: var(--ink);
  color: #f1e9e3;
  padding: 44px 0 24px;
  border-top: 4px solid transparent;
  border-image: var(--rainbow) 1;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-logo { font-family: "Anton", sans-serif; font-size: 24px; }
footer .social-row { display: flex; gap: 18px; font-size: 18px; }
footer .social-row a { color: #f1e9e3; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
footer .social-row a:hover { color: var(--accent); transform: translateY(-2px) scale(1.1); }
footer .copy { font-size: 12px; opacity: 0.6; width: 100%; text-align: center; margin-top: 24px; }
footer .copy a { text-decoration: underline; text-underline-offset: 2px; opacity: 1; }
footer .copy a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 860px) {
  .nav ul, .nav-actions .btn-small { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bio-grid, .contact-grid { grid-template-columns: 1fr; }
  .bio-grid img { height: 320px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .video-grid { max-width: 480px; margin: 0 auto; }
  .video-embed { flex-basis: 100%; max-width: 100%; }
  .split-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
