/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --bg: #0d0b09;
  --panel: #161412;
  --paper: #ede9e6;
  --nav: #9a948e;
  --mast-left: #8a8078;
  --mast-right: #7a7068;
  --index-num: #6a6058;
  --body: #b8b0a8;
  --accent: #a09488;
  --footer-label: #685850;
  --rule: rgba(237,233,230,0.065);
  --rule-heavy: rgba(237,233,230,0.08);
  --rule-light: rgba(237,233,230,0.04);
  --rule-inner: rgba(237,233,230,0.07);
  --pad: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; }

/* ── PAGE SHELL — full bleed on mobile ── */
.page { width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV — single line on all screens
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--rule);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 32px;
  width: auto;
  opacity: 0.92;
  filter: invert(93%) sepia(5%) saturate(200%) hue-rotate(340deg) brightness(95%);
  transform: translateX(-10px);
}

.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}

.nav-links a {
  font-size: 7.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--paper); }
.nav-links .nav-ig { color: var(--accent); }

/* ── MASTHEAD — hidden on mobile, visible on desktop ── */
.masthead {
  display: none;
}

.mast-l {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 11.5px;
  color: var(--mast-left);
  letter-spacing: 0.04em;
}

.mast-r {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mast-right);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO / BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  padding: 28px var(--pad) 24px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--index-num);
  font-family: 'IBM Plex Sans', monospace;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--index-num);
}

.hero h1 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  line-height: 0.92;
  color: var(--paper);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: rgba(237,233,230,0.62);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.hero-body {
  font-size: 13px;
  color: var(--body);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* watermark */
.hero-watermark {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translate(-12%, -50%);
  width: 300px;
  height: auto;
  opacity: 0.07;
  filter: invert(93%) sepia(5%) saturate(200%) hue-rotate(340deg) brightness(95%);
  pointer-events: none;
  z-index: 0;
}

.hero > *:not(.hero-watermark) {
  position: relative;
  z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARTIST
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.artist {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px var(--pad);
  border-bottom: 1px solid var(--rule);
}

.artist-portrait {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--rule-heavy);
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.artist-name {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 4px;
}

.artist-text {
  font-size: 12px;
  color: var(--body);
  line-height: 1.7;
}

.info-cell-highlight {
  background: linear-gradient(180deg, rgba(237,233,230,0.045), rgba(237,233,230,0.02));
  border-top: 1px solid rgba(237,233,230,0.1);
  border-bottom: 1px solid rgba(237,233,230,0.1);
  box-shadow: inset 0 1px 0 rgba(237,233,230,0.04);
}

.info-note {
  font-size: 10.5px;
  color: var(--mast-left);
  line-height: 1.65;
  max-width: 42ch;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIDEBAR INDEX — desktop only
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.body-layout {
  display: block;
}

.index { display: none; }

.idx {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--mast-left);
  border-bottom: 1px solid var(--rule-light);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.idx span {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--index-num);
  margin-right: 10px;
  font-family: 'IBM Plex Sans', monospace;
}

.idx-active { color: var(--paper); background: rgba(237,233,230,0.03); }
.idx-active span { color: var(--accent); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STYLES — 2-col grid on mobile
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.styles {
  padding: 20px var(--pad);
  border-bottom: 1px solid var(--rule);
}

.sec-label {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--index-num);
  font-family: 'IBM Plex Sans', monospace;
  margin-bottom: 14px;
}

.styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}

.style-card {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-light);
}

.style-card:nth-child(odd) { padding-right: 10px; }
.style-card:nth-child(even) {
  padding-left: 10px;
  border-left: 1px solid var(--rule-light);
}

.style-num {
  font-size: 7px;
  letter-spacing: 0.24em;
  color: var(--index-num);
  font-family: 'IBM Plex Sans', monospace;
  margin-bottom: 3px;
}

.style-card h3 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.style-desc {
  font-size: 10.5px;
  color: var(--mast-left);
  line-height: 1.5;
}

.styles-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.styles-cta::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-inner);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process {
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--rule);
}

.process-text {
  font-size: 13px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--rule-inner);
  margin: 16px 0;
}

.pull {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(237,233,230,0.6);
  max-width: 28ch;
  margin-bottom: 16px;
}

.ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INFO RIBBON — prices + worldwide
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.info-ribbon {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--rule);
}

.info-cell {
  padding: 20px var(--pad);
}

.info-cell:first-child {
  border-bottom: 1px solid var(--rule-light);
}

.info-cell h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.info-cell h2 em { color: rgba(237,233,230,0.42); }

.info-text {
  font-size: 12px;
  color: var(--body);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact {
  padding: 32px var(--pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid var(--rule-heavy);
  border-bottom: 2px solid var(--rule-heavy);
}

.contact h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 12px;
}

.contact h2 em { color: rgba(237,233,230,0.42); }

.contact-body {
  font-size: 13px;
  color: var(--body);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 20px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
}

.contact-secondary {
  display: flex;
  gap: 10px;
}

.contact-secondary .btn {
  flex: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(237,233,230,0.05);
}

.fcol {
  padding: 10px var(--pad);
  border-bottom: 1px solid var(--rule-light);
}

.fcol:nth-child(odd) { border-right: 1px solid var(--rule-light); }
.fcol-wide { grid-column: 1 / -1; border-right: none; }

.flabel {
  font-size: 7px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--footer-label);
  margin-bottom: 2px;
}

.fval {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: var(--nav);
}

.fval a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(160,148,136,0.18);
  transition: color 0.2s;
}
.fval a:hover { color: var(--paper); }

.colophon {
  padding: 10px var(--pad);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--index-num);
  display: flex;
  justify-content: space-between;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED COMPONENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(237,233,230,0.22);
  color: var(--paper);
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.btn:hover {
  background: rgba(237,233,230,0.04);
  border-color: rgba(237,233,230,0.38);
}

.btn-full { width: 100%; }

.btn-sm {
  min-height: 44px;
  padding: 10px 18px;
  border-color: rgba(237,233,230,0.12);
  color: var(--nav);
  font-size: 8.5px;
  letter-spacing: 0.14em;
}

.btn-sm:hover {
  color: var(--paper);
  border-color: rgba(237,233,230,0.22);
  background: rgba(237,233,230,0.03);
}

.link-i {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(160,148,136,0.28);
  transition: color 0.2s;
}

.link-i:hover { color: var(--paper); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESKTOP — min-width: 1024px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1024px) {
  :root { --pad: 48px; }

  body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background:
      radial-gradient(circle at top, rgba(160,148,136,0.06), transparent 38%),
      linear-gradient(180deg, #13110f 0%, var(--bg) 100%);
  }

  /* page wrapper — contained card */
  .page {
    width: min(1200px, 100%);
    background: linear-gradient(180deg, rgba(22,20,18,0.98), rgba(13,11,9,0.98));
    border: 1px solid rgba(237,233,230,0.08);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  }

  .nav { padding: 18px var(--pad); }
  .nav-logo img {
    height: 36px;
    transform: translateX(-14px);
  }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 9.5px; letter-spacing: 0.12em; }

  /* masthead visible */
  .masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px var(--pad);
    border-top: 2px solid var(--rule-heavy);
    border-bottom: 2px solid var(--rule-heavy);
  }

  /* hero */
  .hero {
    padding: 32px var(--pad) 28px;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 72px);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: clamp(22px, 2.8vw, 30px);
    margin-bottom: 16px;
  }

  .hero-body { font-size: 14px; }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .hero-watermark {
    width: clamp(360px, 44vw, 560px);
    right: -4%;
    transform: translate(-8%, -50%);
  }

  /* artist — side by side, larger portrait */
  .artist { padding: 24px var(--pad); gap: 24px; }
  .artist-portrait { width: 96px; height: 96px; }
  .artist-name { font-size: 18px; }
  .artist-text { font-size: 13px; line-height: 1.8; }

  /* body layout with sidebar */
  .body-layout {
    display: grid;
    grid-template-columns: 150px 1fr;
  }

  .index {
    display: block;
    border-right: 1px solid rgba(237,233,230,0.06);
    padding: 20px 0;
  }

  .content {
    padding: 0;
  }

  /* styles — 4 columns */
  .styles { padding: 24px 36px 24px 32px; }

  .styles-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .style-card {
    padding: 16px 16px 18px 0;
  }

  .style-card:nth-child(odd) { padding-right: 16px; }
  .style-card:nth-child(even) {
    padding-left: 16px;
    border-left: none;
  }

  .style-card:nth-child(4n+1) { padding-left: 0; }
  .style-card:nth-child(4n+2),
  .style-card:nth-child(4n+3),
  .style-card:nth-child(4n+4) { padding-left: 16px; }

  .style-card:nth-child(4n) { border-right: none; }
  .style-card:not(:nth-child(4n)) { border-right: 1px solid var(--rule-light); }

  .style-card h3 { font-size: 17px; }
  .style-desc { font-size: 11px; }

  /* process */
  .process { padding: 24px 36px 24px 32px; }

  /* info ribbon — 2 columns */
  .info-ribbon { grid-template-columns: 1fr 1fr 1fr; }
  .info-cell { padding: 24px var(--pad); }
  .info-cell:first-child,
  .info-cell:nth-child(2) {
    border-bottom: none;
    border-right: 1px solid var(--rule-light);
  }
  .info-cell h2 { font-size: clamp(22px, 3vw, 30px); }

  /* contact */
  .contact { padding: 40px var(--pad); }
  .contact h2 { font-size: clamp(32px, 5vw, 48px); }
  .contact-body { font-size: 14px; }
  .contact-channels {
    flex-direction: row;
    max-width: none;
    width: auto;
    justify-content: center;
  }
  .contact-secondary { flex: none; }

  /* footer — 4 columns */
  .footer {
    display: flex;
  }

  .fcol {
    flex: 1;
    padding: 14px var(--pad) 14px 0;
    border-bottom: none;
    border-right: 1px solid var(--rule-light);
  }

  .fcol:first-child { padding-left: var(--pad); }
  .fcol:nth-child(n+2) { padding-left: 24px; }
  .fcol:last-child { border-right: none; }
  .fcol-wide { grid-column: auto; }
  .fcol:nth-child(odd) { border-right: 1px solid var(--rule-light); }
}