:root {
  --bg: #070706;
  --bg-soft: #0e0f0c;
  --ink: #ece9e0;         /* bone white */
  --dim: #85857a;         /* dust grey */
  --acid: #8f9a57;        /* swamp/olive green — the only accent (name kept for cascade) */
  --moss: #8f9a57;
  --moss-dim: #59613a;
  --line: #201f1a;
  --mono: "Space Mono", monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 30px; }

/* ---------- header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 6, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  text-decoration: none;
  color: var(--ink);
}

.logo span { color: var(--moss); }

.nav-links { display: flex; gap: 26px; align-items: center; }

.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  transition: color 0.16s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.nav-ext { color: var(--moss); }
.nav-links a.nav-ext:hover { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  padding: 130px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -20%;
  height: 130%;
  background: radial-gradient(46% 52% at 24% 16%, rgba(143, 154, 87, 0.09), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero .kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 17ch;
}

.hero h1 em { font-style: normal; color: var(--moss); }

.hero p {
  margin-top: 30px;
  max-width: 52ch;
  color: var(--dim);
  font-size: 1.05rem;
}

.hero p strong { color: var(--ink); font-weight: 500; }

.is-this-you {
  margin-top: 32px;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  display: grid;
  gap: 10px;
}

.is-this-you li::first-letter { color: var(--moss); }

.hero-cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.manifesto {
  margin-top: 52px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--moss);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid var(--moss-dim);
  color: var(--moss);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
}

.btn:hover { border-color: var(--moss); background: rgba(143, 154, 87, 0.08); }
.btn:active { transform: translateY(1px); }

.btn.solid { background: var(--moss); border-color: var(--moss); color: #0b0b09; }
.btn.solid:hover { background: transparent; color: var(--moss); }

.btn.ghost { border: none; color: var(--dim); padding: 0; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.btn.ghost:hover { color: var(--ink); border-color: var(--moss); background: transparent; }


/* ---------- sections ---------- */

section { padding: 120px 0; border-bottom: 1px solid var(--line); }

.sec-head { margin-bottom: 60px; }

.sec-head .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  display: block;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
}

.sec-head h2 em { font-style: normal; color: var(--moss); }

.sec-head p { color: var(--dim); margin-top: 16px; max-width: 56ch; font-size: 1.02rem; }

/* ---------- work grid (gallery mosaic) ---------- */

/* horizontal infinite reel of commissioned covers — no names, no links, just the art */
.work-reel {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.work-reel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reel 70s linear infinite;
}

.work-reel-track img {
  width: 300px;
  height: 300px;
  flex: 0 0 auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #0c0c0a;
  filter: contrast(1.03);
  transition: filter 0.4s ease, transform 0.4s ease;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.work-reel-track img:hover { filter: contrast(1.06) brightness(1.06); }

/* wide tile — for diptychs / landscape covers: keep full width, don't crop */
.work-reel-track img.wide { width: auto; height: 300px; }

/* lightbox — tap/click a cover to open it full size */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(6, 6, 5, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.lightbox.open img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--mono);
  font-size: 1.5rem;
  line-height: 1;
  color: #f3f1ea;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

@keyframes reel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .work-reel-track { animation: none; }
  .work-reel { overflow-x: auto; }
}

.gallery-note {
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  max-width: 72ch;
}

.gallery-note a { color: var(--moss); }
.gallery-note strong { color: var(--moss); }

/* ---------- services (cards) ---------- */

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3px; }

.svc {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.svc:hover { border-color: var(--moss-dim); background: #111209; }

.svc.popular { border-color: var(--moss-dim); }

.svc-flag {
  position: absolute;
  top: -1px;
  right: -1px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  padding: 7px 13px;
  background: var(--moss);
  color: #0b0b09;
}

.svc .svc-price {
  font-family: var(--mono);
  color: var(--moss);
  font-size: 1.4rem;
  font-weight: 700;
}

.svc h3 { margin: 12px 0 4px; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; }

.svc .svc-sub {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}

.svc p { color: var(--dim); font-size: 0.94rem; flex-grow: 1; }

.svc .pick {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  border-left: 2px solid var(--moss);
  padding-left: 13px;
}

.svc .svc-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--moss);
  letter-spacing: 0.04em;
}

.svc .svc-cta { margin-top: 24px; text-align: center; font-size: 0.68rem; padding: 13px 16px; }

.svc.rules-card { border-style: dashed; }
.svc.rules-card:hover { border-color: var(--dim); background: var(--bg-soft); }

.svc-terms {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--dim);
  max-width: 70ch;
}

.svc-actions { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* ---------- steps (cards) ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 3px; }

.steps.five { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.step { border: 1px solid var(--line); padding: 32px 28px; background: var(--bg-soft); }

.step .n {
  font-family: var(--mono);
  color: var(--moss);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.step h3 { margin: 16px 0 10px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }

.step p { color: var(--dim); font-size: 0.92rem; }

.step a { color: var(--moss); }

/* ---------- licenses (table) ---------- */

.lic-table { width: 100%; border-collapse: collapse; }

.lic-table th, .lic-table td {
  border: 1px solid var(--line);
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
}

.lic-table th {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--bg-soft);
}

.lic-table td:first-child { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; text-transform: lowercase; color: var(--ink); white-space: nowrap; letter-spacing: 0; }

.lic-table td:nth-child(2) { font-family: var(--mono); color: var(--moss); white-space: nowrap; }

.lic-table td:last-child { color: var(--dim); font-size: 0.92rem; }

.table-scroll { overflow-x: auto; }

/* ---------- faq ---------- */

.faq-list { display: grid; gap: 3px; max-width: 900px; }

.faq-list details { border: 1px solid var(--line); background: var(--bg-soft); }

.faq-list details[open] { border-color: var(--moss-dim); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 26px;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
  transition: color 0.18s;
}

.faq-list summary:hover { color: var(--moss); }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--moss);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after { content: "\2013"; }

.faq-list details p {
  padding: 0 26px 24px;
  color: var(--dim);
  font-size: 0.94rem;
  max-width: 72ch;
}

.faq-list details a { color: var(--moss); }

/* ---------- contact (centered) ---------- */

.contact { text-align: center; padding: 140px 0; }

.contact h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto 22px;
  color: var(--ink);
}
.contact h2 em { font-style: normal; color: var(--moss); }

.contact p { color: var(--dim); max-width: 50ch; margin: 0 auto 38px; font-size: 1.05rem; }

.contact .hero-cta { justify-content: center; }

.contact .discount {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  border: 1px dashed var(--moss-dim);
  padding: 11px 20px;
}

/* ---------- footer ---------- */

footer {
  padding: 46px 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center; }

@media (max-width: 720px) {
  .nav-links { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: 0.58rem; }
  .hero { padding: 90px 0 70px; }
  section { padding: 80px 0; }
  .work-reel-track img { width: 210px; height: 210px; }
  .work-reel-track img.wide { width: auto; height: 210px; }
}
