/* Dark Lotus Tattoo - Build 014 */
:root {
  --ink: #080706;
  --charcoal: #14110f;
  --panel: #1c1612;
  --line: rgba(213, 168, 79, 0.22);
  --gold: #d5a84f;
  --gold-soft: #f2d28b;
  --ivory: #f4efe4;
  --muted: #b3a794;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ivory);
  background:
    radial-gradient(ellipse at 8% 92%, rgba(108, 26, 47, 0.40), transparent 48%),
    radial-gradient(ellipse at 92% 10%, rgba(74, 14, 31, 0.32), transparent 46%),
    #0a0507;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

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

button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ivory);
  color: var(--ink);
}

.skip-link:focus { top: 1rem; }

.announce {
  background: rgba(213, 168, 79, 0.12);
  border-bottom: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 7, 6, 0.85);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled { border-color: var(--line); }

.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.04em; }
.brand small { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem); }
.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: color 140ms ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ivory); }
.site-nav a[aria-current="page"] { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.nav-cta {
  color: var(--gold-soft) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 140ms ease;
}
.nav-cta::after { content: " \2192"; color: var(--gold); display: inline-block; transition: margin-left 150ms ease; }
.nav-cta:hover { color: var(--ivory) !important; }
.nav-cta:hover::after { margin-left: 0.3rem; }

.nav-toggle { display: none; }

/* Buttons */
.button {
  display: inline-block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease;
}
.button::after { content: " \2192"; color: var(--gold); display: inline-block; transition: margin-left 160ms ease; }
.button:hover { color: var(--ivory); }
.button:hover::after { margin-left: 0.3rem; }
.button.primary { color: var(--gold-soft); }
.button.ghost { color: var(--muted); }
.button.ghost:hover { color: var(--ivory); }
.button:disabled { opacity: 0.55; cursor: wait; }

.text-link { color: var(--gold-soft); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.text-link:hover { color: var(--ivory); border-color: var(--gold); }

/* Layout */
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.band { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.band + .band { border-top: 1px solid rgba(213, 168, 79, 0.1); }

.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.section-heading { margin-bottom: 1.8rem; }
.section-heading.row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.split { display: grid; gap: clamp(1.4rem, 4vw, 3.5rem); grid-template-columns: minmax(12rem, 1fr) 2fr; }

.prose { max-width: 46rem; color: var(--ivory); }
.prose.narrow { max-width: 42rem; }
.prose p { color: #d9d2c2; }
.lead { color: var(--muted); max-width: 44rem; font-size: 1.06rem; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(3rem, 8vw, 6.5rem);
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(213, 168, 79, 0.12), transparent 36%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.hero-inner { max-width: 56rem; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); position: relative; z-index: 1; }
.hero-logo {
  width: clamp(14rem, 36vw, 26rem);
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 14px 60px rgba(213, 168, 79, 0.40));
  animation: heroLogoIn 950ms cubic-bezier(.2,.7,.2,1) both, heroFloat 6.5s ease-in-out 1s infinite;
}
@keyframes heroLogoIn { from { opacity: 0; transform: translateY(18px) scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; }
.hero .eyebrow::before,
.hero .eyebrow::after {
  content: "";
  width: clamp(1.4rem, 5vw, 2.6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

/* Page head */
.page-head {
  padding: clamp(3.2rem, 9vw, 5.5rem) 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(213, 168, 79, 0.1), transparent 55%);
}

/* Tiles (gallery) */
.tile-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}
.tile-grid.large { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }
.tile {
  margin: 0;
  background: var(--panel);
  border: 1px solid rgba(213, 168, 79, 0.14);
  overflow: hidden;
}
.tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 300ms ease; }
.tile:hover img { transform: scale(1.025); }
.tile figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}
.tile figcaption span { color: var(--gold); white-space: nowrap; }

/* Cards */
.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.artist-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid rgba(213, 168, 79, 0.14);
  padding: 1rem;
  transition: border-color 150ms ease, transform 150ms ease;
}
.artist-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.artist-card img { width: 4.6rem; height: 4.6rem; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); flex: 0 0 auto; }
.artist-card h3 { margin: 0 0 0.2rem; }
.artist-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.card-tags { color: var(--gold) !important; margin-top: 0.3rem !important; font-size: 0.8rem !important; }

.info-card {
  background: var(--panel);
  border: 1px solid rgba(213, 168, 79, 0.14);
  padding: 1.4rem 1.5rem;
}
.info-card h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.info-card p { margin: 0; color: #cfc7b6; font-size: 0.95rem; }
.info-card.muted { opacity: 0.75; }
.info-card.warn { border-color: rgba(213, 120, 79, 0.45); }

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid rgba(213, 168, 79, 0.14);
  padding: 1.4rem 1.5rem;
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.steps h3 { margin-bottom: 0.4rem; }
.steps p { margin: 0; color: #cfc7b6; font-size: 0.95rem; }

/* Policy list */
.policy-list { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); }
.policy-list h3 { color: var(--gold-soft); margin-bottom: 0.35rem; }
.policy-list p { margin: 0; color: #cfc7b6; font-size: 0.95rem; }

/* Artist profile */
.profile { display: grid; gap: clamp(1.4rem, 4vw, 3rem); grid-template-columns: minmax(14rem, 18rem) 1fr; align-items: start; }
.profile-photo { width: 100%; max-width: 18rem; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line); }
.chip-row { display: block; margin: 1rem 0 1.4rem; }
.chip {
  display: inline;
  color: var(--gold-soft);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.chip:not(:last-child)::after { content: "  \00B7  "; color: var(--gold); }

/* Request form */
.request-grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: minmax(0, 1.7fr) minmax(15rem, 1fr); align-items: start; }
.request-form { display: grid; gap: 1.05rem; }
.request-form label { display: grid; gap: 0.35rem; font-size: 0.9rem; color: var(--muted); }
.request-form small { color: var(--muted); font-size: 0.78rem; }
.field-row { display: grid; gap: 1.05rem; grid-template-columns: 1fr 1fr; }
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form select,
.request-form textarea {
  background: var(--charcoal);
  border: 1px solid rgba(213, 168, 79, 0.2);
  color: var(--ivory);
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.request-form input:focus, .request-form select:focus, .request-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}
.request-form textarea { resize: vertical; }
.request-form input[type="file"] { color: var(--muted); font-size: 0.85rem; }
.request-form .check { display: flex; align-items: center; gap: 0.6rem; color: var(--ivory); }
.request-form .check input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.form-note { color: var(--muted); font-size: 0.8rem; }
.form-note a { color: var(--gold-soft); }
.form-status { min-height: 1.4em; margin: 0; font-size: 0.95rem; }
.form-status.is-ok { color: #9dc28a; }
.form-status.is-error { color: #e08f6a; }
.hp-field { position: absolute; left: -7000px; height: 0; overflow: hidden; margin: 0; }

.request-aside { display: grid; gap: 0.4rem; align-content: start; background: var(--panel); border: 1px solid rgba(213, 168, 79, 0.14); padding: 1.5rem; }
.request-aside h2 { font-size: 1.05rem; color: var(--gold); margin: 0.8rem 0 0.2rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.request-aside h2:first-child { margin-top: 0; }
.request-aside p { margin: 0 0 0.4rem; color: #d9d2c2; font-size: 0.95rem; }
.request-aside a { color: var(--gold-soft); }

/* Misc */
.page-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(2rem, 6vw, 4rem);
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1rem, 4vw, 3rem) 2.4rem;
  background: #0b0908;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr; max-width: 72rem; margin: 0 auto; }
.site-footer strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.03em; display: block; margin-bottom: 0.5rem; }
.site-footer p { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.5rem; }
.site-footer a { color: var(--muted); transition: color 140ms ease; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-nav, .footer-social { display: grid; gap: 0.45rem; align-content: start; font-size: 0.9rem; }
.footer-note { max-width: 72rem; margin: 2rem auto 0; color: rgba(179, 167, 148, 0.7); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 56rem) {
  .split, .profile, .request-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle {
    display: grid;
    gap: 0.36rem;
    background: none;
    border: 1px solid var(--line);
    padding: 0.7rem 0.65rem;
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 1.3rem; height: 2px; background: var(--gold-soft); transition: transform 180ms ease, opacity 180ms ease; }
  body.nav-open .nav-toggle span:first-child { transform: translateY(0.42rem) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-0.1rem) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 25;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(8, 7, 6, 0.97);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { font-size: 1.25rem; }
  .site-header { position: sticky; }
  body.nav-open .site-header { background: transparent; }
  body.nav-open .nav-toggle { position: relative; z-index: 40; }
}

@media (max-width: 36rem) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tile-grid, .tile-grid.large { grid-template-columns: repeat(2, 1fr); }
}
  
/* Lightbox - Build 018 */
.tile img, .profile-photo { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(213, 168, 79, 0.35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 81;
  background: rgba(20, 16, 13, 0.8);
  border: 1px solid rgba(213, 168, 79, 0.5);
  color: #f2d28b;
  font-size: 1.5rem;
  line-height: 1;
  width: 2.9rem;
  height: 2.9rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: #d5a84f; color: #14100d; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #b3a794;
  font-size: 0.9rem;
  max-width: 80vw;
  text-align: center;
}

body.lightbox-open { overflow: hidden; }


/* Build 026 - burgundy/gold ambiance: fixed grain + vignette */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: soft-light;
}
body::after {
  background: radial-gradient(ellipse at 50% 42%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}
