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

:root {
  --wood-dark: #1a1410;
  --wood-mid: #2e2319;
  --bg: var(--wood-dark);
  --surface: rgba(28, 20, 14, 0.82);
  --text: #f7f7f9;
  --muted: #d8d2ca;
  --bio-text: #ececf1;
  --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;
  --text-body: 1.28rem;
  --text-body-lg: 1.42rem;
  --text-small: 1.05rem;
  --text-caption: 0.95rem;
  --wood-wall:
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(72, 54, 38, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 100% 90% at 50% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 65%),
    repeating-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0,
      rgba(0, 0, 0, 0.12) 2px,
      transparent 2px,
      transparent 68px,
      rgba(0, 0, 0, 0.38) 68px,
      rgba(0, 0, 0, 0.38) 72px,
      transparent 72px,
      transparent 140px
    ),
    repeating-linear-gradient(
      92deg,
      rgba(255, 235, 210, 0.02) 0,
      transparent 14px,
      rgba(0, 0, 0, 0.05) 28px,
      transparent 42px
    ),
    linear-gradient(175deg, #4a3828 0%, #2e2319 38%, #352820 68%, #1f1812 100%);
}

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

body {
  font-family: var(--font-body);
  min-height: 100%;
  background-color: var(--wood-dark);
  background-image: var(--wood-wall);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: var(--text-body);
  -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(26, 18, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 220, 180, 0.08);
}

.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(--bio-text);
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--accent) !important;
  background: transparent !important;
  border: 1px solid rgba(255, 220, 180, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
}

.nav-cta:hover {
  border-color: rgba(255, 220, 180, 0.65) !important;
  background: rgba(0, 212, 255, 0.06) !important;
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

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

.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: var(--text-caption);
  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: var(--text-small);
  color: var(--bio-text);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.reviews-badge-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  color: var(--bio-text);
  text-decoration: none;
  transition: color 0.2s;
}

.reviews-badge-link:hover {
  color: var(--text);
}

.reviews-badge-link:hover .reviews-score {
  color: var(--accent);
}

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

.reviews-badge-text {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.reviews-score {
  font-weight: 600;
  color: var(--text);
  font-size: 1.08rem;
}

.reviews-meta {
  font-size: var(--text-small);
  letter-spacing: 0.02em;
}

.reviews-count {
  font-size: var(--text-caption);
}

.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.38rem;
  font-style: italic;
  color: var(--bio-text);
  max-width: 560px;
  margin: 0 auto 2rem;
}

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

.btn {
  font-family: var(--font-display);
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 2px;
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255, 220, 180, 0.42);
}

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

.btn-secondary {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 0;
  color: var(--accent);
  padding: 0.35rem 0 0.25rem;
  letter-spacing: 0.12em;
}

.btn-secondary:hover {
  color: var(--accent-dim);
  border-bottom-color: rgba(0, 212, 255, 0.55);
  background: transparent;
}

/* 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.82rem, 2vw, 1.05rem);
  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: var(--text-small);
  color: var(--bio-text);
  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.18rem, 3vw, 1.38rem);
  font-style: italic;
  font-weight: 600;
  color: var(--bio-text);
  line-height: 1.55;
  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.07) 0%, transparent 60%);
}

.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: var(--text-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.5rem;
}

.artist-page-tagline {
  font-size: var(--text-body-lg);
  color: var(--bio-text);
  font-style: italic;
  margin-bottom: 1rem;
}

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

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

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

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

.artist-bio-inner p {
  color: var(--bio-text);
  font-size: var(--text-body-lg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.artist-bio-inner a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

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

.artist-bio-quote {
  text-align: center;
  font-style: italic;
  color: var(--accent);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.artist-bio-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.artist-bio-actions .book-payment-cta {
  margin-top: 0.25rem;
}

.artist-bio-actions .book-payment-hint {
  margin-top: 0;
}

.btn-instagram {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  border: none;
  color: #fff;
  background: linear-gradient(
    45deg,
    #feda75 0%,
    #fa7e1e 20%,
    #d62976 45%,
    #962fbf 70%,
    #4f5bd5 100%
  );
  box-shadow: 0 0 20px rgba(214, 41, 118, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-instagram:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 0 28px rgba(214, 41, 118, 0.4);
  transform: translateY(-1px);
}

.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(--accent);
  text-decoration: none;
}

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

/* 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(--bio-text);
  margin-bottom: 1.25rem;
  font-size: var(--text-body-lg);
  line-height: 1.8;
}

.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: var(--text-caption) !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(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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

.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: var(--text-body);
  color: var(--accent);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-highlights span {
  font-size: var(--text-body);
  color: var(--bio-text);
  line-height: 1.55;
}

/* Artists */

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

.artists-inner {
  width: 100%;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 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: var(--text-body-lg) !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: var(--text-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.artist-card p {
  color: var(--bio-text);
  font-size: var(--text-body);
  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.55rem 1rem;
  font-size: var(--text-small);
}

.artist-card-actions .btn-secondary {
  padding: 0.3rem 0 0.2rem;
}

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

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

/* Gift sessions */

.gift-hero {
  text-align: center;
  padding: 7rem 2rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 220, 180, 0.05) 0%, transparent 60%);
}

.gift-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.gift-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 2.3vw, 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin: 0 auto 2.25rem;
  max-width: 640px;
}

.gift-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--bio-text);
  font-size: var(--text-body-lg);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 220, 180, 0.12);
  padding-top: 2rem;
}

.book-hero-cash {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.65;
  opacity: 0.9;
}

.book-visit-lead {
  margin: 0 0 1.75rem;
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.65;
}

.gift-deposit-panel {
  padding: 0 2rem 2.5rem;
}

.gift-deposit-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(255, 200, 140, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(255, 220, 180, 0.07) 0%, rgba(20, 18, 16, 0.4) 55%);
  text-align: left;
}

.gift-deposit-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 0 0 0.5rem;
}

.gift-deposit-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.gift-deposit-lead {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: var(--text-body-lg);
  line-height: 1.55;
}

.gift-deposit-facts {
  margin: 0 0 1.35rem;
  padding-left: 1.2rem;
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
}

.gift-deposit-facts li {
  margin-bottom: 0.65rem;
}

.gift-deposit-facts li:last-child {
  margin-bottom: 0;
}

.gift-deposit-after-pay {
  margin: 0 0 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 220, 180, 0.12);
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.7;
}

.gift-deposit-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin-bottom: 0.75rem;
}

.gift-deposit-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--bio-text);
  opacity: 0.85;
  line-height: 1.5;
}

.gift-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 0.65rem;
}

.gift-section-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.65;
}

.gift-options {
  padding: 3rem 2rem 5rem;
}

.gift-options-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gift-card {
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid rgba(255, 220, 180, 0.1);
  display: flex;
  flex-direction: column;
}

.gift-card-featured {
  border-color: rgba(255, 220, 180, 0.28);
  box-shadow: none;
}

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

.gift-card-note {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
}

.gift-buy-btn {
  align-self: center;
  min-width: 11rem;
}

.gift-after {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.gift-after p {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.gift-after a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

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

.gift-contact-links {
  font-size: var(--text-body-lg);
  margin-bottom: 1.25rem !important;
}

.gift-contact-sep {
  color: var(--muted);
  margin: 0 0.65rem;
}

.gift-pay-note {
  font-size: var(--text-body) !important;
  color: var(--bio-text) !important;
  font-style: italic;
}

/* 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(--bio-text);
  font-size: var(--text-body);
  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(--bio-text);
  font-size: var(--text-body);
  line-height: 1.65;
}

.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(--bio-text);
  font-size: var(--text-body-lg);
  line-height: 1.75;
  margin-left: 0;
}

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

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

.faq-page-hero {
  text-align: center;
  padding: 1.5rem 2rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.faq-page-lead {
  color: var(--bio-text);
  font-size: var(--text-body-lg);
  line-height: 1.8;
  margin-top: 1rem;
}

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

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

.faq + .reviews-static--faq {
  border-top: none;
  padding-top: 2rem;
}

.faq .faq-inner h2.visually-hidden + .faq-list {
  margin-top: 0;
}

.faq-page-hero + .faq {
  padding-top: 2.5rem;
}

/* Breadcrumbs */

.breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6.5rem 2rem 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-ui);
  font-size: var(--text-caption);
  color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb a {
  color: var(--bio-text);
  text-decoration: none;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

/* Static reviews (SEO + social proof) */

.reviews-static {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-static-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.reviews-static-lead {
  color: var(--bio-text);
  font-size: var(--text-body);
  margin-bottom: 2rem;
}

.reviews-static-lead a {
  color: var(--accent);
  text-decoration: none;
}

.reviews-static-lead a:hover {
  text-decoration: underline;
}

.reviews-static-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.reviews-static-list blockquote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid rgba(255, 220, 180, 0.1);
}

.reviews-static-list p {
  color: var(--bio-text);
  font-size: var(--text-body);
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

.reviews-static-cta {
  margin: 0;
}

/* Google Maps embed */

.map-embed-wrap {
  margin: 1.5rem auto 0;
  max-width: 640px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 180, 0.12);
}

.map-embed-wrap--book {
  margin-top: 2rem;
}

.map-embed {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-map-sep {
  color: var(--muted);
  margin: 0 0.5rem;
}

/* Local SEO page */

.local-hero {
  text-align: center;
  padding: 1.5rem 2rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.local-lead {
  color: var(--bio-text);
  font-size: var(--text-body-lg);
  line-height: 1.8;
  margin: 1rem auto 1.75rem;
}

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

.local-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
}

.local-services h2,
.local-areas h2,
.local-map h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.local-services-grid {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.local-services-grid li {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid rgba(255, 220, 180, 0.1);
}

.local-services-grid h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.local-services-grid p {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

.local-services-grid a {
  color: var(--accent);
  text-decoration: none;
}

.local-services-grid a:hover {
  text-decoration: underline;
}

.local-areas {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.local-areas > .local-inner > p {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.25rem;
}

.local-areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  color: var(--text);
  font-size: var(--text-body);
}

.local-map {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.local-address {
  text-align: center;
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.local-address a:hover {
  text-decoration: underline;
}

.local-hours {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-small);
  margin-bottom: 0.5rem;
}

.local-map-links {
  text-align: center;
  margin-top: 1rem;
  font-size: var(--text-body);
}

.local-map-links a {
  color: var(--accent);
  text-decoration: none;
}

.local-map-links a:hover {
  text-decoration: underline;
}

.local-map-links span {
  color: var(--muted);
  margin: 0 0.5rem;
}

.local-crosslink,
.local-strip-links {
  text-align: center;
  margin-top: 1.25rem;
  font-size: var(--text-body);
  color: var(--bio-text);
}

.local-crosslink a,
.local-strip-links a {
  color: var(--accent);
  text-decoration: none;
}

.local-crosslink a:hover,
.local-strip-links a:hover {
  text-decoration: underline;
}

.local-strip-links span {
  color: var(--muted);
  margin: 0 0.5rem;
}

.local-strip {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.local-strip-inner {
  max-width: 800px;
  margin: 0 auto;
}

.local-strip h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.local-strip-inner > p {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.local-strip .local-areas-list {
  margin-bottom: 0.5rem;
}

.book-area-lead {
  color: var(--bio-text);
  font-size: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 700px) {
  .local-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-embed {
    height: 320px;
  }
}

/* Book CTA (home) */

.book-cta {
  padding: 4rem 2rem 5rem;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.book-cta-inner {
  max-width: 420px;
  margin: 0 auto;
}

.book-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.35rem 1.75rem;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  border-color: rgba(255, 220, 180, 0.38);
}

.book-cta-btn:hover {
  border-color: rgba(0, 212, 255, 0.5);
}

.book-cta-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.book-cta-sub {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  font-style: italic;
  color: var(--bio-text);
  letter-spacing: 0.02em;
  text-transform: none;
}

.book-cta-btn:hover .book-cta-sub {
  color: var(--bio-text);
}

.book-page {
  padding-top: 7rem;
}

.book-page.book-visit {
  padding-top: 3rem;
}

.book-page .contact-grid-centered {
  max-width: 520px;
}

.book-how {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 220, 180, 0.1);
  text-align: left;
}

.book-how p {
  font-size: var(--text-body);
  color: var(--bio-text, var(--text));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.book-how p strong {
  color: var(--text);
  font-weight: 600;
}

.book-payment-cta {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 1.35rem auto 0;
}

.book-payment-hint {
  margin-top: 0.65rem;
  font-size: var(--text-small);
  color: var(--bio-text);
  text-align: center;
  letter-spacing: 0.03em;
}

.book-section-label {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-weight: 500;
  text-align: center;
}

/* 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: var(--text-body);
  color: var(--text);
  margin-bottom: 0.5rem;
}

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

.contact-grid-centered .contact-phone a,
.contact-grid-centered .contact-email a {
  font-size: var(--text-body);
  font-weight: 400;
}

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

.hours-inline {
  margin-top: 1.25rem;
  font-size: var(--text-small);
  color: var(--bio-text);
}

.contact-gift-link {
  margin-top: 1.5rem;
}

.contact-gift-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-body);
}

.contact-gift-link a:hover {
  color: var(--accent-dim);
}

.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(--bio-text);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: var(--text-body);
}

.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(--bio-text);
  font-size: var(--text-body);
}

.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(--bio-text);
  font-size: var(--text-body);
}

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

/* Footer */

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

.footer-areas {
  margin-top: 0.5rem;
  font-size: var(--text-caption);
}

.footer-machine {
  margin-top: 0.75rem;
  font-size: var(--text-caption);
}

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

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

/* 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.88rem, 2.5vw, 1.12rem);
  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: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: rgba(26, 18, 12, 0.98);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 220, 180, 0.08);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 100;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99;
  }

  .nav a {
    padding: 0.9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 220, 180, 0.06);
  }

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

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

  .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;
  }
}


/* --- Accessibility & legal (minimal additive) --- */
.footer-legal {
  margin-top: 0.85rem;
  font-size: var(--text-caption);
}

.footer-legal a {
  color: var(--bio-text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.55rem 0.9rem;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: var(--text-small);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.motion-pause {
  display: inline-flex;
  align-items: center;
  margin: 0.65rem 0 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: var(--bio-text);
  font-family: var(--font-ui);
  font-size: var(--text-caption);
  border-radius: 4px;
  cursor: pointer;
}

.motion-pause:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.gift-deposit-age,
.gift-deposit-legal {
  margin: 0.85rem 0 0;
  font-size: var(--text-caption);
  color: var(--bio-text);
  line-height: 1.55;
}

.gift-deposit-age a,
.gift-deposit-legal a {
  color: var(--accent);
}

.legal-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.legal-page .legal-lead {
  color: var(--bio-text);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--bio-text);
  line-height: 1.65;
  font-size: var(--text-body);
}

.legal-page ul {
  padding-left: 1.25rem;
  margin: 0.4rem 0 0;
}

.legal-page a {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
