/* css/styles.css */
:root {
  --bg: #0b0b0b;
  --bar: #101010;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d59b52;
  --accent-strong: #ffbf63;
  --accent-bright: #ffdca0;
  --navH: 70px;
  --navH-compact: 58px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border-radius: 6px;
  z-index: 3000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .parallax {
    transform: none;
  }
}

/* ===== TOP MENU ===== */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navH);
  z-index: 2000;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  box-shadow: none;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.topnav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.topnav.scrolled {
  height: var(--navH-compact);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topnav.scrolled::before {
  opacity: 1;
}

.topnav-inner {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.topnav-inner nav {
  justify-self: center;
}

.topnav-inner .brandmark {
  justify-self: start;
}

.topnav-inner .menu-toggle {
  justify-self: end;
}

/* Logo */
.brandmark {
  display: flex;
  align-items: center;
  z-index: 10;
  transition: transform 0.3s ease;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.brandmark:hover {
  transform: scale(1.05);
}

.brandmark-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  border: none;
}

.mark {
  width: 46px;
  height: 46px;
  display: block;
}
.mark path {
  stroke: #fff;
  stroke-width: 10;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: stroke 0.3s ease;
}
.brandmark:hover .mark path {
  stroke: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.navlinks {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navlinks a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.navlinks a:visited {
  color: rgba(255, 255, 255, 0.86);
}

.navlinks a:hover,
.navlinks a.active,
.navlinks a[aria-current="page"] {
  color: #fff;
  letter-spacing: 0.2em;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after,
.navlinks a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

/* CTA Button */
.book-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.book-btn:visited {
  color: rgba(255, 255, 255, 0.92);
}
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.3)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.book-btn:hover::before {
  opacity: 1;
}
.book-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.book-btn:active {
  transform: translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2201;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle:hover span {
  background: rgba(255, 255, 255, 0.7);
}

/* Mobile Menu Animation */
@keyframes menuTwistTop {
  0% {
    transform: translateY(0) rotate(0);
  }
  60% {
    transform: translateY(6px) rotate(180deg);
  }
  85% {
    transform: translateY(8px) rotate(245deg);
  }
  100% {
    transform: translateY(8px) rotate(225deg);
  }
}

@keyframes menuTwistMid {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  60% {
    opacity: 0;
    transform: rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: rotate(180deg) scaleX(0.4);
  }
}

@keyframes menuTwistBottom {
  0% {
    transform: translateY(0) rotate(0);
  }
  60% {
    transform: translateY(-6px) rotate(180deg);
  }
  85% {
    transform: translateY(-8px) rotate(335deg);
  }
  100% {
    transform: translateY(-8px) rotate(315deg);
  }
}

.topnav.menu-open .menu-toggle span:nth-child(1) {
  animation: menuTwistTop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.topnav.menu-open .menu-toggle span:nth-child(2) {
  animation: menuTwistMid 0.55s ease forwards;
}
.topnav.menu-open .menu-toggle span:nth-child(3) {
  animation: menuTwistBottom 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Show/Hide Elements */
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 680px;
  height: 78vh;
  max-height: 840px;
  position: relative;
  background: #000;
  overflow: hidden;
  padding-top: var(--navH);
  --hero-parallax: 0px;
}

/* Background with parallax effect */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
}

@keyframes slowZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Enhanced vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 70%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      rgba(0, 0, 0, 0.05) 60%,
      rgba(0, 0, 0, 0.6) 100%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 16px 0;
  z-index: 1;
}

.brand {
  width: min(1100px, 100%);
  margin: 0 auto;
  transform: translateY(-18px);
  animation: fadeInUp 1s ease forwards;
}

.brand h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(52px, 9vw, 140px);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.2s both;
}

.brand h2 {
  margin: 14px 0 0;
  font-weight: 300;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 64px);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero .artist-about-actions {
  justify-content: center;
  align-items: center;
}

/* ===== Bottom info bar ===== */
.info-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 16, 16, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 10px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.info-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: start;
  text-align: center;
}
.info-col {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.info-col:nth-child(1) {
  animation-delay: 0.6s;
}
.info-col:nth-child(2) {
  animation-delay: 0.75s;
}
.info-col:nth-child(3) {
  animation-delay: 0.9s;
}

.info-col .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.info-col .value {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  white-space: pre-line;
}
.info-col .value a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.info-col .value a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* ===== White section below ===== */
.below {
  background: #fff;
  min-height: 420px;
  color: #111;
  padding: 80px 16px;
  position: relative;
}
.below::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
}
.below .center {
  width: min(1120px, 92%);
  margin: 0 auto;
  text-align: center;
  color: #111;
}
.below .hint {
  margin: 0;
  font-size: 15px;
  color: #6a6a6a;
  font-style: italic;
  line-height: 1.8;
  animation: fadeIn 1s ease forwards;
}

/* ===== Beige grid section ===== */
.artists {
  background: #f5f3ef;
  color: #111;
  padding: 90px 16px 110px;
  position: relative;
}
.artists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
}
.artists-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  text-align: center;
}
.artists-kicker {
  margin: 0;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  letter-spacing: 0.02em;
}
.artists-title {
  margin: 8px 0 50px;
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-photo {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-photo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 4000;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

/* ===== Services card carousels ===== */
.artists-services .service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #c9c4bb;
  aspect-ratio: 3 / 4;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.artists-services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.35s ease;
}


.artists-services .service-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.artists-services .carousel-viewport {
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.artists-services .carousel-viewport::-webkit-scrollbar {
  display: none;
}

.artists-services .carousel-viewport.is-dragging {
  cursor: grabbing;
}

.artists-services .carousel-track {
  display: flex;
  height: 100%;
}

.artists-services .carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  scroll-snap-align: start;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  filter: none;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}


.artists-services .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(17, 17, 17, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.artists-services .carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.7);
}

.artists-services .carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.artists-services .carousel-prev {
  left: 12px;
}

.artists-services .carousel-next {
  right: 12px;
}

.artists-services .service-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: transform 0.35s ease;
}

.artists-services .service-name {
  font-size: 13px;
  font-weight: 500;
  display: block;
  opacity: 0.9;
}

.artists-services .service-title {
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-top: 4px;
  transition: letter-spacing 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .artists-services .service-card:hover {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: -2px;
  }

  .artists-services .service-card:hover::after {
    opacity: 0.92;
  }

  .artists-services .service-card:hover .carousel-slide {
    transform: scale(1.06);
  }

  .artists-services .service-card:hover .service-meta {
    transform: translateY(-3px);
  }

  .artists-services .service-card:hover .service-title {
    letter-spacing: 0.14em;
  }
}

.artists-services .service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.artists-services .service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.artists-services .service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.artists-services .service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.artists-services .service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.artists-services .service-card:nth-child(6) {
  animation-delay: 0.6s;
}

@media (max-width: 640px) {
  .artists-services .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

.artist-card {
  position: relative;
  border: none;
  padding: 0;
  background: #c9c4bb;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  isolation: isolate;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease;
  will-change: transform;
}
.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(1.08) brightness(0.95) saturate(1.05);
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 0;
}
.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0.75;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.artist-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.artist-name {
  font-size: 13px;
  font-weight: 500;
  display: block;
  opacity: 0.9;
}
.artist-surname {
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-top: 4px;
}
.artist-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.artist-card:hover::after {
  filter: grayscale(0) brightness(1.02) saturate(1.2);
  transform: scale(1.08);
}
.artist-card:hover::before {
  opacity: 0.55;
}

.artist-card:nth-child(1) {
  animation-delay: 0.1s;
}
.artist-card:nth-child(2) {
  animation-delay: 0.2s;
}
.artist-card:nth-child(3) {
  animation-delay: 0.3s;
}
.artist-card:nth-child(4) {
  animation-delay: 0.4s;
}
.artist-card:nth-child(5) {
  animation-delay: 0.5s;
}
.artist-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Fullscreen image section ===== */
.comingsoon-stage {
  background: #0b0b0b;
  height: 160vh;
  position: relative;
}
.comingsoon-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.comingsoon-panel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* ===== Artist about ===== */
.artist-about {
  background: #0b0b0b;
  color: #fff;
  padding: 90px 16px;
  position: relative;
}
.artist-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}
.artist-about-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.artist-about-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  min-height: 420px;
}
.artist-about-media.parallax {
  transform: none;
}
@media (min-width: 641px) {
  .artist-about-media {
    min-height: 320px;
  }
}
.artist-about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02);
}
.artist-about-kicker {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}
.artist-about-title {
  margin: 12px 0 18px;
  font-size: clamp(26px, 3.6vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}
.artist-about-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
}
.artist-about-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.artist-about-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.artist-about-stat .stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.artist-about-stat .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}
.artist-about-highlights {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.artist-about-highlight {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.artist-about-highlight .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}
.artist-about-highlight .value {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.artist-about-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}
.outline-btn:visited {
  color: #fff;
}
.outline-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .info-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-bar {
    padding: 20px 10px;
  }

  .parallax {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --navH: 70px;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-inner {
    height: auto;
    padding: 72px 16px 24px;
  }

  .brand {
    transform: none;
  }

  .brand h1 {
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.9;
  }

  .brand h2 {
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.32em;
  }

  .info-bar {
    position: relative;
    margin-top: 20px;
  }

  .menu-toggle {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  .navlinks {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    padding: calc(var(--navH) + 24px) 18px 32px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    list-style: none;
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(28px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.6s ease, filter 0.6s ease;
    z-index: 2100;
  }

  .topnav.menu-open .brandmark {
    position: relative;
    z-index: 2202;
  }

  .topnav.menu-open .menu-toggle {
    position: relative;
    z-index: 2203;
  }

  .navlinks li {
    width: 100%;
    text-align: center;
  }

  .navlinks a {
    font-size: 18px;
    letter-spacing: 0.22em;
  }

  .topnav.menu-open .navlinks {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
  }

  /* 2 columns on mobile */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artists-services .artists-grid {
    grid-template-columns: 1fr;
  }

  .comingsoon-stage {
    height: auto;
  }
  .comingsoon-sticky {
    position: static;
    height: auto;
  }
  .comingsoon-panel {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    background: #0b0b0b;
  }

  .artist-about {
    padding: 70px 16px;
  }
  .artist-about-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .artist-about-media {
    order: 0;
    min-height: 280px;
    transform: none;
  }
  .artist-about-content {
    order: 1;
    padding-top: 6px;
  }
  .artist-about-highlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== FAQ (WHITE / BLACK) ===== */
.faq-white {
  background: #ffffff;
  color: #111;
  padding: 90px 16px;
  position: relative;
}

.faq-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
}

.faq-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  text-align: center;
}

.faq-kicker {
  margin: 0;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  letter-spacing: 0.02em;
}

.faq-title {
  margin: 8px 0 40px;
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #111;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-body {
  padding: 0 18px 18px;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.faq-body p {
  margin: 10px 0 0;
}

.faq-cta {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.faq-cta.faq-cta-center {
  flex-direction: column;
}

.faq-link {
  color: #111;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-link:visited {
  color: #111;
}

.faq-link:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
  .faq-title {
    margin-bottom: 28px;
  }
  .faq-item summary {
    padding: 16px;
  }
  .faq-body {
    padding: 0 16px 16px;
  }
}

/* ===== Booking form (book.html) ===== */
.booking-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  text-align: left;
}

.booking-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.booking-intro h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 16px;
}

.booking-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.booking-form {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #111;
  border-radius: 50%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field label .required {
  color: #d32f2f;
  font-size: 14px;
}

.field label .optional {
  font-size: 10px;
  font-weight: 600;
  color: #999;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: #111;
  outline: none;
  transition: all 0.25s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999;
}

.field-helper {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-top: -4px;
}

.file-input-wrapper {
  position: relative;
}

.file-input-wrapper input[type="file"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.file-input-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  background: #fafafa;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-input-label:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.file-name {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.style-option {
  position: relative;
}

.style-option input[type="radio"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.style-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.style-option input[type="radio"]:checked + label {
  border-color: #111;
  background: #111;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.style-option label:hover {
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.form-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.booking-form .book-btn {
  background: #111;
  color: #fff;
}

.booking-form .book-btn:hover {
  background: #1d1d1d;
}

.form-note {
  margin: 20px 0 0;
  padding: 18px;
  background: #f9f9f9;
  border-left: 4px solid #111;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}
.form-success {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f2f6f3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1b4d2b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-note strong {
  color: #111;
  font-weight: 800;
}

.quick-contact {
  max-width: 980px;
  margin: 40px auto 0;
  padding: 28px;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  border-radius: 16px;
  color: #fff;
  text-align: center;
}

.quick-contact h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.quick-contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.quick-contact-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 820px) {
  .booking-form {
    padding: 24px;
  }
  .form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .style-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .booking-form {
    padding: 20px;
    border-radius: 12px;
  }
  .form-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .style-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-contact {
    padding: 24px 20px;
  }
  .quick-contact-links {
    flex-direction: column;
  }
  .quick-contact-links a {
    width: 100%;
    justify-content: center;
  }
}

