/* ═══════════════════════════════════════
   SCYUR — Global Styles v2
   Light-first, gold accent, Aura-inspired
═══════════════════════════════════════ */

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

:root {
  --gold:       #F5A800;
  --gold-dim:   rgba(245,168,0,.12);
  --gold-mid:   rgba(245,168,0,.25);
  --ink:        #111111;
  --ink-60:     rgba(17,17,17,.6);
  --ink-30:     rgba(17,17,17,.3);
  --white:      #FFFFFF;
  --off:        #F8F7F4;
  --mid:        #EEECEA;
  --border:     rgba(0,0,0,.08);
  --border-mid: rgba(0,0,0,.14);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.1);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

[data-theme="dark"] {
  --ink:        #F0EEE9;
  --ink-60:     rgba(240,238,233,.6);
  --ink-30:     rgba(240,238,233,.3);
  --white:      #161614;
  --off:        #1C1B18;
  --mid:        #242320;
  --border:     rgba(255,255,255,.08);
  --border-mid: rgba(255,255,255,.14);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold); }
img { max-width: 100%; }

/* ── CUSTOM CURSOR ── */
.cur {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cur2 {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--gold); transform: translate(-50%,-50%);
  transition: border-color .3s;
}
body.hov .cur { width: 14px; height: 14px; }
body.hov .cur2 { width: 48px; height: 48px; border-color: var(--gold-mid); }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity .5s, visibility .5s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-letters {
  display: flex; gap: 4px;
}
.loader-letters span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
  opacity: 0; transform: translateY(20px);
  animation: loaderLetter .4s cubic-bezier(.16,1,.3,1) forwards;
}
.loader-letters span:nth-child(1){animation-delay:.05s}
.loader-letters span:nth-child(2){animation-delay:.15s}
.loader-letters span:nth-child(3){animation-delay:.25s}
.loader-letters span:nth-child(4){animation-delay:.35s}
.loader-letters span:nth-child(5){animation-delay:.45s}
@keyframes loaderLetter { to { opacity:1; transform:translateY(0); } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
[data-theme="dark"] .nav.solid { background: rgba(22,22,20,.92); }

.n-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: .04em;
  color: var(--ink);
}
.n-logo em { color: var(--gold); font-style: normal; }

.n-links {
  display: flex; list-style: none; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.n-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-60);
  transition: color .2s; white-space: nowrap;
}
.n-links a:hover, .n-links a.active { color: var(--ink); }
.n-links a.active { font-weight: 600; }

.n-right { display: flex; align-items: center; gap: 12px; }

.btn-ghost {
  font-size: .875rem; font-weight: 500; color: var(--ink-60);
  padding: 8px 18px; border-radius: 100px; border: none; background: none;
  cursor: none; transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); }

.btn-gold {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 600; color: #000;
  padding: 10px 22px; border-radius: 100px;
  background: var(--gold); border: none; cursor: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-gold:hover { background: #e09800; box-shadow: 0 4px 20px rgba(245,168,0,.3); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 500; color: var(--ink);
  padding: 10px 22px; border-radius: 100px;
  border: 1.5px solid var(--border-mid); background: none; cursor: none;
  transition: border-color .2s, color .2s, transform .15s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-mid); background: none;
  font-size: .9rem; cursor: none; color: var(--ink-60);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.theme-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── HAMBURGER ── */
.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 8px;
}
.ham span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; top: 72px; background: var(--white);
  z-index: 800; display: flex; flex-direction: column;
  padding: 40px 32px; gap: 0;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu li a {
  display: block; font-size: 1.4rem; font-weight: 600;
  color: var(--ink); padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta { margin-top: 32px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 24px; } }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--ink-60); line-height: 1.65;
  max-width: 520px;
}

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.rv.on { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.footer {
  background: #0D0C0A; color: rgba(240,238,233,.7);
  padding: 80px 48px 40px;
}
.f-top {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; color: #fff;
  letter-spacing: .04em; display: block; margin-bottom: 16px;
}
.f-tagline { font-size: .875rem; line-height: 1.6; max-width: 240px; }
.f-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.f-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,238,233,.4); margin-bottom: 20px;
}
.f-col a {
  display: block; font-size: .875rem; color: rgba(240,238,233,.6);
  margin-bottom: 12px; transition: color .2s;
}
.f-col a:hover { color: var(--gold); }
.f-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: .8rem; color: rgba(240,238,233,.35);
  flex-wrap: wrap; gap: 16px;
}
.f-legal { display: flex; gap: 24px; }
.f-legal a { color: rgba(240,238,233,.35); transition: color .2s; }
.f-legal a:hover { color: rgba(240,238,233,.7); }

@media(max-width:900px){
  .nav { padding: 0 24px; }
  .n-links { display: none; }
  .ham { display: flex; }
  .n-right .btn-ghost, .n-right .btn-outline { display: none; }
  .f-top { grid-template-columns: 1fr; gap: 40px; }
  .f-cols { grid-template-columns: 1fr 1fr; }
  .footer { padding: 60px 24px 32px; }
}
@media(max-width:500px){
  .f-cols { grid-template-columns: 1fr; }
}
