:root {
  --bg: #050504;          /* ink black */
  --bone: #f3efe6;        /* bone white */
  --bone-dim: rgba(243, 239, 230, 0.62);
  --gold: #d4af6a;        /* champagne gold — used exactly 3x: hero ◆, cinematic tier, CTA */
  --hairline: rgba(243, 239, 230, 0.14);
}

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

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

body {
  background: var(--bg);
  color: var(--bone);
  font-family: "Playfair Display", Georgia, serif;
  overflow-x: hidden;
}
body.has-cursor, body.has-cursor a { cursor: none; }

::selection { background: var(--gold); color: #050504; }

/* ---------- top bar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  mix-blend-mode: difference;
}
.brand { font-weight: 800; }
.diamond { color: var(--gold); margin-left: 4px; }
.topbar-right { font-size: 10px; color: var(--bone-dim); font-weight: 400; }

/* ---------- scrub sections ---------- */
.scrub { position: relative; height: 460vh; }
.scrub.hero { height: 560vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}
.scrub canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 42%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 22%, transparent 72%, rgba(0,0,0,0.78) 100%);
}
.overlay { position: relative; z-index: 10; width: 100%; text-align: center; padding: 0 24px; }

.reveal-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 0 4vw;
  opacity: 0;
  will-change: opacity, transform;
}

/* hero type */
.brand-line {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 13vw, 12rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-shadow: 0 0 90px rgba(212, 175, 106, 0.25);
}
.manifesto {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.6vw, 2.8rem);
  line-height: 1.35;
  color: var(--bone);
  text-shadow: 0 2px 40px rgba(0,0,0,0.95), 0 0 14px rgba(0,0,0,0.6);
}
.manifesto.small { font-size: clamp(1.1rem, 2.6vw, 2rem); color: var(--bone-dim); }

/* kinetic slam words */
.slam {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 7.5vw, 7rem);
  letter-spacing: 0.02em;
  text-shadow: 0 10px 60px rgba(0,0,0,0.8);
}

/* founder lines */
.founder {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  font-style: italic;
  text-shadow: 0 2px 40px rgba(0,0,0,0.95), 0 0 14px rgba(0,0,0,0.6);
}
.founder .smile { font-style: normal; }
.founder.small { font-size: clamp(1.2rem, 3vw, 2.2rem); color: var(--bone-dim); }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--bone-dim);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- flat sections ---------- */
.work, .services { padding: 18vh 8vw; }
.section-head { margin-bottom: 9vh; }
.kicker {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--bone-dim);
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  line-height: 1.06;
}
.section-head em { font-family: "Playfair Display", serif; font-style: italic; font-weight: 400; }

/* work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 34px;
}
.card {
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover { transform: translateY(-10px); }
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0b0a;
  margin-bottom: 22px;
  border: 1px solid var(--hairline);
}
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
  transition: filter 0.5s;
}
.card:hover .card-media video { filter: grayscale(0); }
.card-media iframe {
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: 0 0;
  border: 0;
  pointer-events: none;
  display: block;
  background: #fff;
}
.media-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--bone);
  background: rgba(5, 5, 4, 0.72);
  border: 1px solid var(--hairline);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.card h3 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card p { color: var(--bone-dim); font-size: 1.02rem; line-height: 1.6; }

/* services */
.service-list { list-style: none; max-width: 1080px; }
.service-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 30px 6px;
  border-bottom: 1px solid var(--hairline);
}
.s-name {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
}
.s-name small {
  display: block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--bone-dim);
  margin-top: 6px;
  letter-spacing: 0;
}
.s-dots { flex: 1; border-bottom: 1px dotted var(--hairline); transform: translateY(-6px); }
.s-price {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  white-space: nowrap;
}
.cinematic-tier .s-name, .cinematic-tier .s-price { color: var(--gold); }   /* gold use 2 of 3 */
.cinematic-tier { border-bottom-color: rgba(212, 175, 106, 0.4); }

/* ---------- outro ---------- */
.outro {
  min-height: 92vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 34px;
  padding: 12vh 24px;
}
.outro h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 5.6vw, 4.4rem);
  line-height: 1.14;
}
.outro em { font-family: "Playfair Display", serif; font-style: italic; font-weight: 400; }
.cta-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.btn:hover { transform: translateY(-4px); }
.btn.gold {                                    /* gold use 3 of 3 */
  background: var(--gold);
  color: #0b0a07;
  font-weight: 800;
  box-shadow: 0 8px 40px rgba(212, 175, 106, 0.25);
}
.btn.gold:hover { box-shadow: 0 14px 60px rgba(212, 175, 106, 0.4); }
.btn.ghost { color: var(--bone); border: 1px solid var(--hairline); }
.fine { color: var(--bone-dim); font-size: 1rem; }
.fine a { color: var(--bone); }
.colophon {
  margin-top: 8vh;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--bone-dim);
}

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- gold cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 99;
  pointer-events: none;
  border-radius: 50%;
  display: none;
}
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { display: block; }
.cursor-dot { width: 7px; height: 7px; margin: -3.5px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px;
  border: 1px solid rgba(212, 175, 106, 0.55);
  transition: width 0.25s, height 0.25s;
}

/* ---------- mobile pass ---------- */
@media (max-width: 640px) {
  .topbar { padding: 16px 18px; letter-spacing: 0.2em; }
  .topbar-right { display: none; }
  .scrub { height: 340vh; }
  .scrub.hero { height: 420vh; }
  .work, .services { padding: 14vh 7vw; }
  .work-grid { gap: 26px; }
  .service-list li { flex-wrap: wrap; }
  .s-dots { display: none; }
  .s-price { margin-left: auto; }
  .cta-row { flex-direction: column; align-items: center; }
}
