/* ─────────────────────────────────────
   INK & SOUL — Styles (mkbookings demo)
───────────────────────────────────── */

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

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

:root {
  --black:    #0e0c0b;
  --surface:  #161412;
  --surface2: #1e1b18;
  --border:   rgba(255,255,255,0.08);
  --gold:     #c8912a;
  --gold-dim: rgba(200,145,42,0.12);
  --text:     #f0ede8;
  --muted:    #9e9890;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 100px 0; }

/* ── Section typography ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--text);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.section-aside {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 260px;
  text-align: right;
  line-height: 1.5;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: #d9a035; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text); }

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-gold-sm:hover { background: var(--gold); color: var(--black); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,12,11,0.95);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #d9a035; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 56px 40px;
  gap: 48px;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO — split left/right layout ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  padding: 100px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}
.hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8.5rem);
  letter-spacing: 0.02em;
  line-height: 0.93;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Hero stats panel */
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.panel-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.panel-stats { list-style: none; display: flex; flex-direction: column; }
.panel-stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.panel-stats li:last-child { border-bottom: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.stat-key { font-size: 0.78rem; color: var(--muted); }
.panel-note {
  margin-top: 20px;
  font-size: 0.7rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  letter-spacing: 0.02em;
}

/* ── TICKER ── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ARTISTS — horizontal numbered list ── */
.artists { background: var(--surface); }
.artist-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.artist-row {
  display: grid;
  grid-template-columns: 52px 52px 220px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.artist-row:hover { background: rgba(255,255,255,0.025); }
.artist-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.12);
  transition: color 0.25s;
}
.artist-row:hover .artist-num { color: var(--gold); }
.artist-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.artist-info h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.artist-spec    { font-size: 0.78rem; color: var(--gold); }
.artist-bio     { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.artist-meta    { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.style-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  white-space: nowrap;
}

/* ── GALLERY — bento grid ── */
.gallery { background: var(--black); }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* 3-column bento: wide=span 2, tall=span 2 rows */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.bento-item      { position: relative; overflow: hidden; cursor: pointer; }
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row:    span 2; }
.bento-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.bento-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-item:hover .bento-bg { transform: scale(1.05); }
.bento-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.bento-item:hover .bento-label { opacity: 1; transform: none; }
.bento-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,145,42,0.15);
  border: 1px solid rgba(200,145,42,0.3);
  padding: 2px 8px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 4px;
}
.bento-label p     { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.bento-label small { font-size: 0.72rem; color: rgba(240,237,232,0.55); }

/* ── BOOKING — full-width centered, 3-col form ── */
.booking { background: var(--surface); border-top: 1px solid var(--border); }
.booking-header { text-align: center; max-width: 560px; margin: 0 auto 36px; }
.booking-sub { font-size: 0.95rem; color: var(--muted); margin-top: 12px; line-height: 1.65; }
.demo-notice {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(200,145,42,0.22);
  padding: 10px 24px;
  margin: 0 auto 32px;
  max-width: 640px;
  letter-spacing: 0.04em;
}
.booking-form { max-width: 860px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.form-group       { display: flex; flex-direction: column; gap: 8px; }
.form-group.span3 { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(158,152,144,0.45); }
.form-group select option   { background: var(--surface2); }
.form-group textarea        { resize: vertical; min-height: 100px; }

/* Terms accordion */
.terms-block { border: 1px solid var(--border); margin-bottom: 28px; }
.terms-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-family: var(--font-body);
  transition: background 0.2s;
}
.terms-toggle:hover { background: rgba(255,255,255,0.03); }
.terms-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.terms-toggle-label svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.terms-caret { color: var(--muted); font-size: 1rem; transition: transform 0.25s; }
.terms-caret.open { transform: rotate(180deg); }
.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.terms-content.open { max-height: 900px; }
.terms-list {
  list-style: decimal;
  padding: 16px 20px 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terms-list li         { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.terms-list li strong  { color: var(--text); font-weight: 600; }
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.terms-check input { display: none; }
.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.terms-check:has(input:checked) .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}
.terms-check:has(input:checked) .checkbox-box::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg) translate(0px, -2px);
}
.checkbox-label { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-disclaimer { text-align: center; font-size: 0.72rem; color: var(--muted); margin-top: 14px; }
.booking-success {
  display: none;
  text-align: center;
  padding: 64px 0;
  max-width: 480px;
  margin: 0 auto;
}
.booking-success.visible { display: block; }
.success-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.booking-success p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 28px; }
.booking-form.hidden { display: none; }

/* ── CONTACT — inline row with dividers ── */
.contact { background: var(--black); }
.contact-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  border: 1px solid var(--border);
  padding: 48px 40px;
}
.contact-item           { padding: 0 32px; }
.contact-item:first-child { padding-left: 0; }
.contact-item:last-child  { padding-right: 0; }
.contact-divider {
  width: 1px;
  height: 72px;
  background: var(--border);
  align-self: center;
}
.contact-label  { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-value  { font-size: 0.9rem; color: var(--text); font-weight: 500; margin-bottom: 4px; }
.contact-note   { font-size: 0.76rem; color: var(--muted); }
.social-links   { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.social-link    { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.social-link:hover { color: var(--gold); }
.social-link svg   { width: 15px; height: 15px; }

/* ── FOOTER ── */
.footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner { padding: 48px 0; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-logo   { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-brand p { font-size: 0.76rem; color: var(--muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom > p { font-size: 0.74rem; color: var(--muted); }
.footer-dev        { display: flex; align-items: center; gap: 10px; font-size: 0.74rem; color: var(--muted); }
.footer-dev-links  { display: flex; gap: 14px; }
.footer-dev a      { color: var(--muted); transition: color 0.2s; }
.footer-dev a:hover { color: var(--gold); }

/* ── Fade-in animation ── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
    gap: 48px;
  }
  .hero-right { display: none; }

  .artist-row {
    grid-template-columns: 48px 48px 1fr auto;
    gap: 16px;
  }
  .artist-bio { display: none; }

  .bento-grid { grid-auto-rows: 200px; }

  .contact-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 36px 32px;
  }
  .contact-divider { display: none; }
  .contact-item    { padding: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section   { padding: 72px 0; }
  .container { padding: 0 20px; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .section-aside  { text-align: left; max-width: 100%; }

  .hero { padding: 100px 20px 60px; }

  .artist-row { grid-template-columns: 1fr auto; gap: 12px; }
  .artist-num    { display: none; }
  .artist-avatar { display: none; }
  .artist-meta   { display: none; }

  .bento-grid { grid-auto-rows: 160px; gap: 3px; }

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

  .contact-row { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }

  .footer-top   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-dev        { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-dev-links  { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; }
  .bento-item.wide { grid-column: span 1; }
  .bento-item.tall { grid-row:    span 1; }
}
