/* ============================================================
   Shared Tonalities — Site-wide stylesheet
   Powered by Novarion
   ============================================================ */

:root {
  --ink: #111111;
  --paper: #ffffff;
  --muted: #5a5a5a;
  --line: #111111;
  --hairline: #e2e2df;
  --wash: #f7f6f3;
  --accent: #a8402c;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-top: 76px; /* clears fixed nav */
}

a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: auto;
}

/* ---------- Site nav (fixed, every page) ---------- */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-nav .nav-logo{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.st-mark{
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
}
.site-nav .nav-links{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav .nav-links a{
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.site-nav .nav-links a:hover{ border-color: var(--ink); }
.site-nav .nav-powered{
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.nova-mark{
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-right: 5px;
  object-fit: contain;
}
@media (max-width: 860px){
  .site-nav{ padding: 16px 20px; flex-wrap: wrap; }
  .site-nav .nav-links{ gap: 16px; order: 3; width: 100%; justify-content: flex-start; }
  body{ padding-top: 96px; }
}

/* ---------- Site footer (every page) ---------- */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 48px 40px 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 32px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .col strong{
  display: block;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer .col div{ margin-bottom: 4px; }
.site-footer .col a:hover{ text-decoration: underline; }

.footer-logo{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .st-mark{ width: 21px; height: 21px; }
.footer-tagline{
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 34ch;
}
.footer-links{ display: flex; flex-direction: column; }
.footer-links a{ margin-bottom: 8px; }
.footer-links a:hover{ text-decoration: underline; }

.social-row{ display: flex; gap: 14px; margin: 10px 0; }
.social-row a{
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.social-row a:hover{ color: var(--ink); border-color: var(--ink); }

.newsletter-form{ display: flex; margin-top: 10px; max-width: 320px; }
.newsletter-form input{
  flex: 1;
  border: 1px solid var(--hairline);
  border-right: none;
  padding: 9px 10px;
  font-size: 12px;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: var(--ink);
}
.newsletter-form input:focus{ outline: none; border-color: var(--ink); }
.newsletter-form button{
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom{
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 20px 40px 40px;
  border-top: 1px solid var(--hairline);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: .04em;
}

@media (max-width: 780px){
  .site-footer{ grid-template-columns: 1fr; padding: 40px 20px 24px; }
  .footer-bottom{ padding: 16px 20px 32px; }
}

/* ---------- Reusable bits ---------- */
.badge{
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.btn{
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: opacity .15s ease;
}
.btn:hover{ opacity: .8; }

.placeholder{
  width: 100%;
  background: #f1f1ef;
  border: 1.5px dashed #b8b8b4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8a8a86;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 20px;
}

.eyebrow{
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Artist page: rule lines ---------- */
.rule{ border: none; border-top: 1.5px solid var(--line); }
.rule-thin{ border: none; border-top: 1px solid #ddd; }

/* ---------- Artist page: bio row ---------- */
.artist-row{ background: var(--wash); }
.artist-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.artist-inner h2{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 18px;
}
.artist-inner .desc{ font-size: 15px; line-height: 1.75; color: #333; max-width: 56ch; }
.artist-inner .desc p{ margin-bottom: 14px; }
.artist-inner .signature{
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.artist-inner .links{ margin-top: 10px; font-size: 13px; }
.artist-inner .links a{ text-decoration: underline; margin-right: 14px; }
@media (max-width: 780px){
  .artist-inner{ grid-template-columns: 1fr; padding: 40px 20px; }
}

/* ---------- Artist page: artwork rows ---------- */
.section-wrap{ max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.row{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  padding: 56px 0;
  align-items: start;
}
.row-index{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.row-index .num{ font-family: 'Fraunces', serif; font-size: 15px; color: var(--muted); }
.row-index .label{
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.row h2{ font-family: 'Fraunces', serif; font-weight: 500; font-size: 30px; margin-bottom: 4px; }
.row .meta{ font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.row .meta strong{ color: var(--ink); font-weight: 600; }
.row .desc{ font-size: 15px; line-height: 1.7; color: #333; max-width: 52ch; margin-bottom: 20px; }
.price-block{
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.price-block .col dt{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.price-block .col dd{ margin-bottom: 3px; }
@media (max-width: 780px){
  .row{ grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* ---------- Artist page: audio / NFC pairing note ---------- */
.pairing-note{
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--wash);
  border-left: 2px solid var(--ink);
  font-size: 12.5px;
  color: #333;
  line-height: 1.6;
}
.pairing-note strong{
  display: block;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}

/* ---------- Artist page: video reel block ---------- */
.video-block{
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px;
}
.video-block .video-placeholder{
  aspect-ratio: 16/9;
  background: #111;
  color: #777;
  border: none;
}
.reel-wrap{ position: relative; }
.reel-unmute{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17,17,17,.75);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  display: none;
}
.reel-unmute:hover{ border-color: #fff; }
