/* ============================================================
   BINNENBEELD · site.css  — shared styles for all pages
   ============================================================ */

:root {
  --ink: #0F0F0F;
  --ink-soft: #2a2a2a;
  --gold: #E3B75E;
  --gold-deep: #caa04a;
  --gold-soft: #f1d99a;
  --navy: #132834;
  --navy-2: #1a3142;
  --slate: #67818E;
  --slate-soft: #9aafbb;
  --paper: #F4F0E8;
  --paper-2: #EBE5D7;
  --light: #E9E9E9;
  --line: rgba(15,15,15,.10);
  --shadow: 0 12px 32px -8px rgba(15,15,15,.16);
  --shadow-hi: 0 24px 60px -16px rgba(15,15,15,.22);
  --display: "Hanken Grotesk", sans-serif;
  --body: "Satoshi", "Hanken Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html, body { background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased }
body { overflow-x: hidden; cursor: none }
::selection { background: var(--gold); color: var(--ink) }
a { color: inherit; text-decoration: none }
button { font-family: inherit; cursor: none }
img { display: block }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.025em; line-height: .95 }
.mono { font-family: var(--mono) }
.container { max-width: 1440px; margin: 0 auto; padding: 0 32px }

/* ============== CURSOR ============== */
.cursor { position: fixed; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); pointer-events: none; z-index: 9999; mix-blend-mode: multiply; transform: translate(-50%,-50%); transition: width .25s, height .25s, background .25s, opacity .2s }
.cursor-label { position: fixed; top: 0; left: 0; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 10px; border-radius: 99px; pointer-events: none; z-index: 9999; opacity: 0; transform: translate(20px,20px); transition: opacity .2s }
.cursor.is-big { width: 92px; height: 92px; mix-blend-mode: normal }
.cursor.is-link { width: 46px; height: 46px }
@media (hover: none) { .cursor, .cursor-label { display: none } body, button, a, input, textarea, select { cursor: auto } }

/* ============== NAV ============== */
nav.top { position: fixed; top: 16px; left: 16px; right: 16px; z-index: 200; padding: 12px 18px 12px 16px; display: flex; align-items: center; justify-content: space-between; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 99px; box-shadow: var(--shadow) }
.logo { display: flex; align-items: center; gap: 8px }
.logo img { height: 34px; width: auto }
.logo .wordmark { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.015em; color: var(--ink) }
.nav-links { display: flex; gap: 4px; font-size: 14px }
.nav-links a { padding: 8px 14px; border-radius: 99px; transition: background .25s, color .25s; font-weight: 500 }
.nav-links a:hover, .nav-links a.active { background: var(--ink); color: var(--paper) }
.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--ink); color: var(--paper); padding: 10px 18px 10px 14px; border-radius: 99px; font-weight: 500; font-size: 14px; border: 1.5px solid var(--ink); transition: transform .3s, background .3s }
.nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold) }
.nav-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite }
.nav-cta:hover .dot { background: var(--ink) }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.6); opacity: .6 } }

/* ============== BUTTONS ============== */
.btn { font-weight: 600; font-size: 15px; padding: 18px 28px; border-radius: 99px; border: 1.5px solid var(--ink); background: var(--ink); color: var(--paper); display: inline-flex; align-items: center; gap: 10px; transition: transform .25s, background .3s; will-change: transform }
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink) }
.btn.ghost { background: transparent; color: var(--ink) }
.btn.ghost:hover { background: var(--ink); color: var(--paper) }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--ink) }
.btn.gold:hover { background: var(--paper); border-color: var(--paper); color: var(--ink) }
.btn .arr { display: inline-block; transition: transform .25s }
.btn:hover .arr { transform: rotate(-45deg) }

/* ============== MARQUEE ============== */
.marquee { padding: 32px 0; overflow: hidden; white-space: nowrap; background: var(--gold); color: var(--ink); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: rotate(-1.2deg); margin: 30px -20px; position: relative; z-index: 5 }
.marquee-track { display: inline-flex; gap: 36px; animation: track 32s linear infinite; font-family: var(--display); font-size: 46px; font-weight: 800; letter-spacing: -.025em; line-height: 1 }
.marquee-track span { display: inline-flex; align-items: center; gap: 36px }
.marquee-track .dia { display: inline-block; width: 22px; height: 22px; background: var(--ink); transform: rotate(45deg); animation: spin 8s linear infinite }
@keyframes spin { to { transform: rotate(405deg) } }
@keyframes track { to { transform: translateX(-50%) } }
.marquee.alt { background: var(--navy); color: var(--paper); transform: rotate(.9deg) }
.marquee.alt .dia { background: var(--gold) }

/* ============== SECTION SHARED ============== */
section { position: relative }
.section-head { margin-bottom: 48px; max-width: 1200px }
.section-num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500 }
section h2 { font-size: clamp(52px,8vw,124px); line-height: .9; letter-spacing: -.035em; font-weight: 800; margin-top: 12px }
section h2 .stk { display: inline-block; background: var(--ink); color: var(--gold); padding: 0 16px; border-radius: 18px; transform: rotate(-2deg) }
section h2 .gold-stk { background: var(--gold); color: var(--ink); display: inline-block; padding: 0 16px; border-radius: 18px; transform: rotate(-2deg) }
section h2 .navy-stk { background: var(--navy); color: var(--paper); display: inline-block; padding: 0 16px; border-radius: 18px; transform: rotate(-2deg) }
section h2 .ul { position: relative; display: inline-block }
section h2 .ul::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: -6px; height: 8px; background: var(--gold); border-radius: 99px; z-index: -1 }
@keyframes wiggle { to { background-position: 100px 0 } }

/* ============== EYEBROW / BREADCRUMBS ============== */
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft) }
.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px }

/* ============== PAGE HEAD (inner pages) ============== */
.page-head { padding: 120px 32px 60px; max-width: 1440px; margin: 0 auto }
.page-head h1 { font-size: clamp(64px,11vw,160px); line-height: .86; letter-spacing: -.04em; font-weight: 800; max-width: 1200px; margin-top: 14px }
.page-head h1 .stk { display: inline-block; background: var(--ink); color: var(--gold); padding: 0 16px; border-radius: 18px; transform: rotate(-2deg) }
.page-head h1 .gold-stk { display: inline-block; background: var(--gold); color: var(--ink); padding: 0 16px; border-radius: 18px; transform: rotate(-2deg) }
.page-head .lede { font-size: 19px; line-height: 1.5; max-width: 640px; color: var(--ink-soft); margin-top: 20px }

/* ============== FAQ ============== */
.faq-item { background: var(--paper-2); border: 1.5px solid var(--ink); border-radius: 24px; padding: 24px 28px; transition: background .25s }
.faq-item:hover { background: var(--paper) }
.faq-item.open { background: var(--ink); color: var(--paper) }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: -.01em }
.faq-q .plus { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 18px; transition: transform .35s; font-weight: 500 }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--paper); color: var(--ink) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.22,1,.36,1) }
.faq-a-inner { padding-top: 14px; font-size: 15px; line-height: 1.6; opacity: .85 }
.faq-item.open .faq-a { max-height: 260px }

/* ============== FORM FIELDS ============== */
.field-c { display: flex; flex-direction: column; gap: 6px }
.field-c label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .65 }
.field-c input, .field-c textarea, .field-c select { background: var(--navy-2); border: 1.5px solid rgba(244,240,232,.15); padding: 14px 18px; border-radius: 14px; color: var(--paper); font-family: inherit; font-size: 15px; outline: none; transition: border-color .25s, background .25s }
.field-c input::placeholder, .field-c textarea::placeholder { color: rgba(244,240,232,.4) }
.field-c input:focus, .field-c textarea:focus, .field-c select:focus { border-color: var(--gold); background: var(--navy-2) }
.field-c textarea { min-height: 120px; resize: vertical }
.field-c select { appearance: none; -webkit-appearance: none; cursor: pointer }

/* ============== TAGS ============== */
.tag { padding: 8px 14px; border-radius: 99px; border: 1.5px solid var(--ink); font-weight: 500; font-size: 13px; background: var(--paper); transition: all .25s }
.tag:hover { background: var(--ink); color: var(--paper); transform: rotate(-2deg) }

/* ============== FOOTER ============== */
footer { background: var(--ink); color: var(--paper); padding: 80px 32px 32px; position: relative; overflow: hidden }
.foot-big { text-align: center; display: flex; justify-content: center; align-items: center; padding: 16px 0 }
.foot-big img { height: clamp(120px,36vw,560px); width: auto; filter: brightness(0) invert(1); opacity: .92 }
.foot-row { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(244,240,232,.16); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; flex-wrap: wrap; gap: 14px }
.foot-row a { color: inherit }
.foot-row a:hover { color: var(--gold) }

/* ============== SCROLL REVEAL ============== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1) }
[data-reveal].revealed { opacity: 1; transform: translateY(0) }

/* ============== RESPONSIVE ============== */
@media (max-width: 780px) {
  .nav-links { display: none }
  body { cursor: auto }
  .btn, .faq-item { cursor: auto }
  .nav-cta .lbl-hide { display: none }
  .page-head { padding: 100px 24px 40px }
  .page-head h1 { font-size: clamp(48px, 12vw, 120px) }
}
