/* ============================================================
   Tokens
   ============================================================ */
:root {
  --bg: #141414;
  --panel: #1b1b1b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f2;
  --muted: #8f8f8a;
  --faint: #56564f;
  --accent: #ff4d2e;
  --accent-dim: rgba(255, 77, 46, 0.14);

  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1180px;
  --r: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* soft ambient glow behind the page, fixed so it doesn't scroll away */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 480px at 8% -6%, rgba(255, 77, 46, 0.14), transparent 60%),
    radial-gradient(620px 460px at 96% 22%, rgba(255, 77, 46, 0.08), transparent 62%),
    radial-gradient(720px 520px at 20% 92%, rgba(255, 77, 46, 0.06), transparent 60%);
}
.wrap { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2 { margin: 0; font-family: var(--display); font-weight: 400; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.scroll-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width .1s linear;
}
.nav-inner { height: 62px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--display); font-size: 1rem; letter-spacing: 0.02em; max-width: 55vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-block; vertical-align: middle; }
.nav-brand::before { content: "● "; color: var(--accent); }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links-contact { display: none; }

@media (max-width: 760px) {
  .nav-hamburger { display: flex; }
  .nav-links-contact { display: block; }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 28px; font-size: 0.95rem; }
}
.nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color .15s ease, background .15s ease;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent-dim); }
@media (max-width: 760px) { .nav-cta { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 148px 0 90px; border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: "— "; }
.hero h1 {
  font-size: clamp(1.8rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.type-cursor { color: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-services {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #191008; }
.btn-primary:hover { background: #ff6a4e; }
.btn-ghost:hover { border-color: var(--text); }
.btn-block { width: 100%; justify-content: center; }

/* Hero image */
.hero-figure {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  border-radius: var(--r);
  background: var(--panel) center/cover no-repeat;
  border: 1px solid var(--line);
}
.hero-figure-empty {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: var(--faint); font-size: 0.85rem; text-align: center; padding: 24px;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 100%; width: 100%; margin: 0 0 20px; aspect-ratio: 16/10; }
  .hero h1 { white-space: normal; overflow-wrap: anywhere; word-break: break-word; font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .splash-text { font-size: 2rem; overflow-wrap: anywhere; word-break: break-word; padding: 0 20px; text-align: center; }
}

/* ============================================================
   Softer section transitions
   ============================================================ */
section.block { position: relative; }
section.block::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ============================================================
   Back to top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #191008;
  border: none;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 45;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #ff6a4e; }
.stats {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 30px 28px;
}
.stat { padding: 10px 32px; text-align: center; }
.stat-value { font-family: var(--display); font-size: 1.8rem; color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.03em; text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   Sections
   ============================================================ */
section.block { padding: 88px 0; border-bottom: 1px solid var(--line); }
section.block:last-of-type { border-bottom: none; }

.block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 40px;
}
.block-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
}
.block-count { color: var(--accent); font-weight: 700; font-size: 0.95rem; }
.block-head-center { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.block-sub { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---- card grid (Projects / Studios) ---- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.card {
  display: block;
  flex: 1 1 220px;
  max-width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .15s ease, transform .2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px) rotate(-0.6deg); }
.card-media { aspect-ratio: 4 / 3; background: #101010 center/cover no-repeat; }
.card-media-empty {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: var(--faint);
  font-size: 0.75rem; text-align: center; padding: 10px;
}
.card-body {
  padding: 12px 14px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.card-body .name { font-weight: 600; font-size: 0.9rem; }
.card-link-mark { font-size: 0.72rem; color: var(--accent); font-weight: 600; white-space: nowrap; }
.card-stats {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px 12px; margin-top: -6px;
  font-size: 0.74rem; color: var(--muted);
}
.card-stats-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 4px #2ecc71; flex-shrink: 0; }
#studiosGrid .card:not(.card-featured) .card-stats { font-size: 0.68rem; padding: 0 10px 10px; }

/* Studios: first 4 featured/big, the rest small and unlimited */
#studiosGrid { align-items: flex-end; }
#studiosGrid .card-featured { flex: 1 1 250px; max-width: 280px; }
#studiosGrid .card-featured .card-media { aspect-ratio: 4 / 3; }
#studiosGrid .card:not(.card-featured) { flex: 1 1 110px; max-width: 126px; }
#studiosGrid .card:not(.card-featured):nth-child(odd) { margin-bottom: 14px; }
#studiosGrid .card:not(.card-featured) .card-media { aspect-ratio: 1 / 1; }
#studiosGrid .card:not(.card-featured) .card-body { padding: 8px 10px 10px; }
#studiosGrid .card:not(.card-featured) .name { font-size: 0.78rem; }

/* ---- experience ---- */
.experience-list { display: flex; flex-direction: column; gap: 14px; }
.experience-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  overflow: hidden;
  min-height: 110px;
  transition: border-color .15s ease, transform .15s ease;
}
.experience-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.experience-server {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-right: 1px solid var(--line);
}
.experience-server img {
  width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.experience-server-fallback {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); color: var(--accent); font-weight: 700; font-family: var(--display);
}
.experience-server-name { font-size: 0.9rem; font-weight: 700; line-height: 1.3; }
.experience-details { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.experience-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.experience-duties { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.experience-duties li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 8px; }
.experience-duties li::before { content: "—"; color: var(--faint); flex-shrink: 0; }
.experience-details .card-stats { padding: 0; margin-top: 4px; }

@media (max-width: 620px) {
  .experience-card { grid-template-columns: 1fr; }
  .experience-server { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---- past work: grouped strips ---- */
.workgroup { margin-bottom: 42px; }
.workgroup:last-child { margin-bottom: 0; }
.workgroup-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.work-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 170px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.work-strip::-webkit-scrollbar { height: 6px; }
.work-strip::-webkit-scrollbar-track { background: transparent; }
.work-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.work-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.work-item { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.work-item .card-media { aspect-ratio: 3 / 4; }
.work-item .caption { padding: 8px 10px; font-size: 0.78rem; color: var(--muted); }

/* ---- showcase ---- */
.showcase-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.showcase-card {
  flex: 1 1 300px;
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.showcase-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.showcase-card .card-media { aspect-ratio: 16 / 10; }
.showcase-body { padding: 18px 18px 20px; }
.showcase-body h3 { font-family: var(--body); font-weight: 700; font-size: 1rem; margin-bottom: 6px; text-transform: none; }
.showcase-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.showcase-open { margin-top: 12px; font-size: 0.8rem; color: var(--accent); font-weight: 600; }

.vouch-preview-wrap { max-width: 560px; margin: 0 auto 24px; }
.vouch-preview-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
#vouchPreview { max-width: none; }
.vouches-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.vouch-card {
  flex: 1 1 300px;
  max-width: 380px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  padding: 28px 28px 26px;
  position: relative;
  overflow: hidden;
}
.vouch-quote-mark {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.vouch-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.vouch-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.vouch-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); color: var(--accent); font-weight: 700; font-size: 1.2rem;
}
.vouch-username { font-size: 1rem; font-weight: 700; }
.vouch-stars { color: var(--accent); font-size: 0.9rem; margin-top: 3px; }
.vouch-review { font-size: 0.95rem; color: var(--text); line-height: 1.55; margin: 0 0 10px; }
.vouch-from { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.vouch-time { font-size: 0.74rem; color: var(--faint); margin-top: 8px; }

/* ---- pricing ---- */
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 960px; margin: 0 auto; }
.price-card {
  flex: 1 1 250px;
  max-width: 310px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  padding: 28px 24px;
  position: relative;
}
.price-card.popular { border-color: var(--accent); }
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #191008;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.price-card h3 { font-family: var(--body); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; text-transform: none; }
.price-desc { color: var(--muted); font-size: 0.84rem; margin-bottom: 20px; }
.price-amount { font-family: var(--display); font-size: 1.9rem; }
.price-amount .unit { font-family: var(--body); font-weight: 500; font-size: 0.8rem; color: var(--muted); margin-left: 6px; }
.price-features { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.price-features li { font-size: 0.87rem; color: var(--muted); display: flex; gap: 8px; }
.price-features li::before { content: "+"; color: var(--accent); font-weight: 700; }

/* ---- commission form ---- */
.inquiry-form {
  max-width: 620px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel); padding: 30px 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--accent); }
.field-error { color: var(--accent); font-size: 0.76rem; margin-top: 6px; }
.char-count { text-align: right; font-size: 0.72rem; color: var(--faint); margin-top: 4px; }
.char-count.near-limit { color: var(--accent); }

.discord-login-row { margin-bottom: 18px; }
.discord-login-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #5865F2; color: #fff; border: none; border-radius: var(--r);
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.discord-login-btn:hover { background: #4752c4; transform: translateY(-1px); }
.discord-login-note { margin: 8px 0 0; font-size: 0.74rem; color: var(--faint); line-height: 1.4; }
.discord-logged-in {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(46,204,113,0.35); border-radius: var(--r);
  background: rgba(46,204,113,0.08);
  padding: 10px 14px; margin-bottom: 18px; font-size: 0.86rem; color: var(--text);
}
.discord-logged-in img { width: 28px; height: 28px; border-radius: 50%; }
.discord-logout-btn {
  margin-left: auto; background: none; border: none; color: var(--muted);
  font-size: 0.78rem; text-decoration: underline; cursor: pointer;
}
.discord-logout-btn:hover { color: var(--text); }
.field label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 7px;
}
.field label .optional { color: var(--faint); text-transform: none; font-weight: 500; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; background: #101010; border: 1px solid var(--line); border-radius: var(--r);
  color: var(--text); font-family: var(--body); font-size: 0.9rem; padding: 10px 12px;
  transition: border-color .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 22px 12px;
  color: var(--faint); font-size: 0.82rem; cursor: pointer; transition: border-color .15s ease, color .15s ease;
}
.dropzone:hover { border-color: var(--accent); color: var(--muted); }
.dropzone-icon { font-size: 1.1rem; color: var(--accent); }
.dropzone-filenames { margin-top: 6px; font-size: 0.78rem; color: var(--muted); }
.form-hint { margin-top: 12px; font-size: 0.8rem; color: var(--muted); text-align: center; min-height: 1em; }
.form-disclosure { margin-top: 14px; font-size: 0.76rem; color: var(--faint); text-align: center; }
.form-disclosure a { color: var(--accent); }
.trust-note { max-width: 620px; margin: 22px auto 0; border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 16px 20px; font-size: 0.85rem; color: var(--muted); line-height: 1.55; text-align: center; }
.trust-note-link { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } .inquiry-form { padding: 22px 18px; } }

/* ============================================================
   Tools I Use
   ============================================================ */
.tools { padding: 40px 0; border-top: 1px solid var(--line); }
.tools-label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.tools-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.tool-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 18px;
  background: var(--panel);
  transition: border-color .15s ease, transform .15s ease;
  min-width: 190px;
  text-decoration: none;
}
.tool-badge:hover { border-color: var(--accent); transform: translateY(-2px); }
.tool-badge img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.tool-badge-text { display: flex; flex-direction: column; gap: 2px; }
.tool-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.tool-use { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   Nav rating badge
   ============================================================ */
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-rating { color: var(--accent); font-size: 0.8rem; font-weight: 700; }

/* ============================================================
   Availability pill
   ============================================================ */
.availability-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 6px 14px; font-size: 0.78rem; font-weight: 600;
  margin-bottom: 18px; color: var(--muted);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; }
.pill-open .pill-dot { background: #2ecc71; box-shadow: 0 0 6px #2ecc71; }
.pill-open { color: #7be3a0; border-color: rgba(46,204,113,0.35); }
.pill-closed .pill-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.pill-closed { color: var(--accent); border-color: rgba(255,77,46,0.35); }

.availability-corner {
  display: none;
}
@media (min-width: 761px) {
  .availability-corner {
    display: inline-flex; align-items: center; gap: 7px;
    position: absolute;
    left: 12px; top: 50%; transform: translateY(-50%);
    border: 1px solid var(--line-strong); border-radius: 999px;
    padding: 5px 12px; font-size: 0.74rem; font-weight: 600;
    color: var(--muted);
    background: rgba(20,20,20,0.6);
  }
  .availability-corner.pill-open { color: #7be3a0; border-color: rgba(46,204,113,0.35); }
  .availability-corner.pill-closed { color: var(--accent); border-color: rgba(255,77,46,0.35); }
}

/* ============================================================
   Copy handle button
   ============================================================ */
.copy-btn {
  background: none; border: 1px solid var(--line-strong); border-radius: var(--r);
  color: var(--muted); font-size: 0.78rem; font-weight: 600; padding: 8px 14px;
  cursor: pointer; transition: border-color .15s ease, color .15s ease;
}
.copy-btn:hover { border-color: var(--accent); color: var(--text); }

/* ============================================================
   Process strip
   ============================================================ */
.process-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; max-width: 1000px; margin: 0 auto; }
.process-step { flex: 1 1 160px; max-width: 190px; text-align: center; }
.process-num {
  width: 34px; height: 34px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); color: var(--accent); font-family: var(--display); font-size: 0.95rem;
  border: 1px solid rgba(255,77,46,0.35);
}
.process-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.process-detail { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--text); font-family: var(--body);
  font-size: 0.92rem; font-weight: 600; text-align: left; padding: 16px 18px; cursor: pointer;
}
.faq-icon { color: var(--accent); font-size: 1.2rem; transition: transform .2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { margin: 0; padding: 0 18px 16px; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ============================================================
   Privacy policy page
   ============================================================ */
.privacy-content { max-width: 720px; }
.privacy-body h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 10px;
}
.privacy-body h3:first-child { margin-top: 0; }
.privacy-body p { color: var(--muted); font-size: 0.94rem; line-height: 1.65; margin: 0 0 6px; }
.privacy-body code { background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; font-size: 0.88em; }
.privacy-body a { color: var(--accent); text-decoration: underline; }
.contact { padding: 100px 0; }
.contact-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.contact h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; line-height: 1.03; max-width: 16ch; }
.contact-sub { margin-top: 16px; max-width: 44ch; color: var(--muted); }
.contact-actions { margin-top: 30px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.contact-handle { font-weight: 700; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.contact-handle:hover { opacity: 0.8; }

footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--faint); font-size: 0.8rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-links { display: flex; gap: 16px; }
footer a:hover { color: var(--muted); }

/* ============================================================
   Splash intro
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-text {
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.splash-cursor { color: var(--accent); animation: blink 1s step-end infinite; }
.splash-skip {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 0.78rem; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
}
.splash-skip:hover { color: var(--muted); }

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,8,8,0.92);
  display: none; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-panel {
  max-width: 900px; width: 100%; max-height: 88vh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--r);
}
.lightbox-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.lightbox-close {
  background: none; border: 1px solid var(--line-strong); border-radius: var(--r);
  color: var(--text); width: 32px; height: 32px; cursor: pointer;
}
.lightbox-body { padding: 18px 20px 24px; }
.lightbox-body p { color: var(--muted); margin: 0 0 14px; }
.lightbox-shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.lightbox-shots img, .lightbox-shots .card-media-empty { border: 1px solid var(--line); border-radius: var(--r); }
.lightbox-link { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: 0.88rem; }

/* ============================================================
   Toast notifications
   ============================================================ */
.toast-wrap {
  position: fixed;
  top: 78px; right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 12px 18px;
  font-size: 0.86rem;
  color: var(--text);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .25s ease, transform .25s ease;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-left-color: #2ecc71; }
.toast-error { border-left-color: var(--accent); }
@media (max-width: 480px) {
  .toast-wrap { left: 12px; right: 12px; top: auto; bottom: 90px; }
  .toast { max-width: none; }
}

/* ============================================================
   "New" badge
   ============================================================ */
.new-badge {
  background: var(--accent);
  color: #191008;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}
.timezone-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}
.timezone-note strong { color: var(--text); }

/* ============================================================
   Sticky mobile commission bar
   ============================================================ */
.mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 44;
    background: rgba(20,20,20,0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .mobile-cta a {
    flex: 1;
    text-align: center;
    background: var(--accent);
    color: #191008;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: var(--r);
  }
  body { padding-bottom: 64px; }
  .back-to-top { bottom: 78px; }
}

.zoomable { cursor: zoom-in; }
.image-zoom {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,6,6,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.image-zoom.open { display: flex; }
.image-zoom img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: zoom-out; border-radius: var(--r); }
.image-zoom-close {
  position: fixed; top: 20px; right: 24px; background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r); color: var(--text); width: 36px; height: 36px; cursor: pointer;
}
.image-zoom-close:hover { border-color: var(--accent); }
.image-zoom-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); border: 1px solid var(--line-strong);
  border-radius: 999px; color: var(--text); width: 48px; height: 48px;
  font-size: 1.6rem; cursor: pointer; display: none; align-items: center; justify-content: center;
}
.image-zoom-nav:hover { border-color: var(--accent); background: rgba(0,0,0,0.6); }
.image-zoom-prev { left: 20px; }
.image-zoom-next { right: 20px; }