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

:root {
  --bg: #0c0c0e;
  --surface: #16161a;
  --text: #f0f0f2;
  --muted: #8a8a96;
  --accent: #00d4ff;
  --accent-dim: #00a8cc;
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-family: var(--font-ui);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

/* Hero */

.hero {
  text-align: center;
  padding: 6rem 0 3rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    var(--bg);
}

.hero-content {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.hero-footer {
  padding: 2rem 2rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.reviews-badge {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.reviews-stars {
  color: #f5c518;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.reviews-badge-contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-ui);
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-dim);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Viewer (artist pages) */

.viewer {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.viewer-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  border-radius: 6px;
  cursor: grab;
  height: 72vh;
}

.viewer-track::-webkit-scrollbar {
  display: none;
}

.viewer-track:active {
  cursor: grabbing;
}

.viewer-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 6px;
  touch-action: pan-x;
}

.viewer-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.photo-frame {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  max-height: 100%;
}

.photo-watermark {
  position: absolute;
  left: 0.75rem;
  bottom: 1rem;
  font-family: var(--font-ui);
  font-size: clamp(0.65rem, 1.8vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  user-select: none;
}

.viewer-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(12, 12, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.viewer-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent);
}

.viewer-prev {
  left: 0.5rem;
}

.viewer-next {
  right: 0.5rem;
}

.viewer-counter {
  font-family: var(--font-ui);
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Homepage revolving client quotes */

.quote-rotator {
  position: relative;
  max-width: 640px;
  margin: 1.25rem auto 0;
  padding: 0 2rem;
  min-height: 5.25rem;
}

.quote-rotator + .hero-footer {
  padding-top: 0.75rem;
}

.quote-slide {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.quote-slide.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.quote-slide p {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 2.8vw, 1.28rem);
  font-style: italic;
  font-weight: 600;
  color: #e4e4ea;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.quote-slide p::before {
  content: "\201C";
  color: var(--accent);
  opacity: 0.95;
  margin-right: 0.12em;
}

.quote-slide p::after {
  content: "\201D";
  color: var(--accent);
  opacity: 0.95;
  margin-left: 0.08em;
}

/* Homepage auto-rotating gallery — canvas crossfade inside .viewer-track sizing */

.viewer-track-auto {
  display: block;
  overflow: hidden;
  cursor: default;
  position: relative;
}

.auto-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Artist pages */

.artist-page-hero {
  text-align: center;
  padding: 7rem 2rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    var(--bg);
}

.artist-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.artist-page-role {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.5rem;
}

.artist-page-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.artist-page-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.artist-page-link:hover {
  color: var(--accent);
}

.artist-bio {
  padding: 3rem 2rem 4rem;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.artist-bio-inner {
  max-width: 720px;
  margin: 0 auto;
}

.artist-bio-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.artist-bio-inner strong {
  color: var(--text);
}

.artist-bio-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.artist-portfolio {
  padding: 4rem 0 5rem;
}

.artist-portfolio .section-header {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.artist-link-portfolio {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600 !important;
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-areas a {
  color: var(--muted);
  text-decoration: none;
}

.footer-areas a:hover {
  color: var(--accent);
}

/* About */

.about {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-header-left {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-content-centered {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-content-centered p:last-child {
  margin-bottom: 0;
}

.maia-spotlight {
  margin: 2rem 0 1.5rem;
  padding: 0;
}

.spotlight-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent) !important;
  margin-bottom: 0.5rem !important;
}

.maia-spotlight h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.spotlight-tags {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--text) !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.02em;
}

.maia-spotlight p:not(.spotlight-eyebrow):not(.spotlight-tags) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.spotlight-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.spotlight-link:hover {
  text-decoration: underline;
}

.about-highlights {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-highlights li {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-highlights strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-highlights span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Artists */

.artists {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.artists-inner {
  width: 100%;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.artist-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.artist-tagline {
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--text) !important;
  margin-bottom: 1.25rem !important;
  font-style: italic;
}

.artist-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.artist-role {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.artist-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.artist-card-simple {
  text-align: center;
  padding: 2.5rem 2rem;
}

.artist-card-simple .artist-role {
  margin-bottom: 1.75rem;
}

.artist-card-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.artist-card-actions .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.artist-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.artist-link:hover {
  color: var(--accent);
}

/* Events */

.events {
  padding: 4rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.events-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.events h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.events p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.events strong {
  color: var(--text);
}

/* Portfolio */

.portfolio {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--muted);
}

.gallery {
  column-count: 3;
  column-gap: 0.75rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  opacity: 0.85;
}

/* FAQ */

.faq {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item dt {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-item dd {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-left: 0;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Contact */

.contact {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-grid-centered {
  grid-template-columns: 1fr;
  max-width: 480px;
  text-align: center;
}

.contact-instagram-primary {
  margin-bottom: 1.5rem;
}

.contact-instagram-primary a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.contact-instagram-primary a:hover {
  text-decoration: underline;
}

.contact-booking-lead {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-secondary-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.contact-grid-centered .contact-phone a,
.contact-grid-centered .contact-email a {
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-phone-large {
  font-size: 1.75rem !important;
  font-weight: 600;
}

.hours-inline {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.contact h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.contact-phone {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-email,
.contact-social,
.contact-map {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.contact-hours ul {
  list-style: none;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hours-note,
.booking-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* Footer */

.footer {
  font-family: var(--font-ui);
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-areas {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-machine {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-machine a {
  color: var(--muted);
  text-decoration: none;
}

.footer-machine a:hover {
  color: var(--accent);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-media {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-media .photo-watermark {
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  left: 1rem;
  bottom: 1.25rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */

@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 0.75rem 1rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .viewer {
    padding: 0;
    max-width: 100%;
  }

  .viewer-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }

  .viewer-prev {
    left: 0.5rem;
  }

  .viewer-next {
    right: 0.5rem;
  }

  .viewer-track {
    border-radius: 0;
    height: 60vh;
  }

  .viewer-slide {
    border-radius: 0;
    height: 60vh;
  }

  .section-header-left {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery {
    column-count: 2;
    column-gap: 0.5rem;
  }
}

@media (min-width: 1100px) {
  .gallery {
    column-count: 4;
  }
}
