/* ════════════════════════════════════════
   NAVADA GROUP · Refined Industrial Editorial
   Fonts: Cormorant Garamond + Bebas Neue + DM Sans
   ════════════════════════════════════════ */

:root {
  --black:   #060504;
  --s1:      #0c0a09;
  --s2:      #141210;
  --s3:      #1c1916;
  --gold:    #C8A84A;
  --gold-lt: #E5C978;
  --gold-dk: #9A7C2E;
  --gold-gl: rgba(200,168,74,0.12);
  --cream:   #EDE8DE;
  --muted:   #7A746C;
  --subtle:  #3A3630;
  --brd:     rgba(200,168,74,0.16);
  --brd-f:   rgba(255,255,255,0.05);
  --nav-h:   70px;
  --max:     1360px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.036;
  mix-blend-mode: screen;
}

/* ── CURSOR ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transition: width .15s, height .15s, opacity .15s;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(200,168,74,.5);
  transition: width .25s, height .25s, border-color .25s;
}
.cursor-ring.hover { width: 50px; height: 50px; border-color: var(--gold); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  transition: background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(6,5,4,.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--brd-f);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3rem);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: baseline; gap: 8px; }
.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem; letter-spacing: .14em; color: var(--cream);
}
.nav-logo em {
  font-style: normal;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold);
}
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--cream); transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem,4vw,3rem) 5rem;
  max-width: var(--max); margin: 0 auto; position: relative;
}
.hero-meta {
  display: flex; gap: 2rem;
  font-size: .67rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.2rem;
  animation: fadeUp .7s ease .1s both;
}
.hero-rule {
  height: 1px; margin-bottom: 2rem;
  background: linear-gradient(to right, var(--gold), rgba(200,168,74,.08), transparent);
  animation: fadeUp .7s ease .2s both;
}
.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 2rem;
}
.ht-pre {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem,2.5vw,2.2rem);
  letter-spacing: .1em; color: var(--muted);
  line-height: 1; display: block;
  animation: fadeUp .8s ease .3s both;
}
.ht-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(5rem,21vw,17rem);
  line-height: .88; letter-spacing: -.02em;
  color: var(--cream); display: block;
  animation: fadeUp .9s ease .4s both;
}
.ht-post {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem,4.5vw,4rem);
  line-height: 1.1; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); display: block; text-align: right;
  animation: fadeUp .8s ease .58s both;
}
.ht-post mark { background: none; color: var(--gold); }
.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 2rem; align-items: end;
  animation: fadeUp .8s ease .72s both;
}
.hero-tagline {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
  line-height: 2;
}
.hero-desc {
  font-size: .93rem; color: rgba(237,232,222,.6); line-height: 1.8;
}
.hero-cta { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem,4vw,3rem);
  display: flex; align-items: center; gap: .7rem;
  animation: fadeUp .7s ease 1s both;
}
.scroll-label {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-lr;
}
.scroll-track { width: 1px; height: 50px; background: var(--subtle); position: relative; overflow: hidden; }
.scroll-thumb {
  position: absolute; left: 0; right: 0; height: 40%;
  background: var(--gold);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { top: -40%; }
  100% { top: 140%; }
}

/* ── BUTTONS ── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .85rem 1.75rem;
  transition: all .25s;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,74,.28); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--brd); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-large { padding: 1.05rem 2.4rem; font-size: .76rem; }
.btn-arrow { display: inline-block; transition: transform .22s; }
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

/* ── TICKER ── */
.ticker { background: var(--gold); overflow: hidden; padding: .62rem 0; }
.ticker-inner {
  display: flex; align-items: center; gap: 1.75rem;
  white-space: nowrap; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .88rem; letter-spacing: .18em; color: #000;
}
.ticker-inner em { font-style: normal; color: rgba(0,0,0,.3); font-size: .45rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION LABEL ── */
.section-label {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}

/* ── ABOUT ── */
.about {
  padding: 9rem 0; position: relative;
  background: linear-gradient(to bottom, var(--black), var(--s1) 50%, var(--black));
}
.about::before, .about::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brd), transparent);
}
.about::before { top: 0; } .about::after { bottom: 0; }
.about-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3rem);
  display: grid; grid-template-columns: 3fr 2fr; gap: 7rem; align-items: center;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: clamp(2.8rem,5vw,5rem);
  line-height: 1.05; margin-bottom: 1.75rem;
}
.about-heading em { font-style: italic; color: rgba(237,232,222,.5); }
.about-body p {
  font-size: .93rem; color: rgba(237,232,222,.55);
  line-height: 1.85; margin-bottom: 1rem;
}
.stat-col {
  border: 1px solid var(--brd);
}
.stat {
  padding: 2rem 2.5rem; position: relative;
  transition: background .3s;
}
.stat:not(:last-child) { border-bottom: 1px solid var(--brd); }
.stat:hover { background: var(--s2); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem,5vw,5rem);
  color: var(--gold); line-height: 1; letter-spacing: .02em;
}
.stat-lbl {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem;
}

/* ── VENTURES ── */
.ventures { padding: 8rem 0 0; }
.ventures-hdr {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3rem) 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--brd-f);
  margin-bottom: 3px;
}
.ventures-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: clamp(3rem,6vw,5.5rem);
  line-height: 1; letter-spacing: -.01em;
}
.ventures-heading em { font-style: italic; color: var(--gold); }
.vh-right {
  text-align: right; font-size: .83rem;
  color: var(--muted); line-height: 1.75;
}
.ventures-count {
  display: block; margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: .18em; color: var(--subtle);
}
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3px; background: var(--s2);
}

/* venture card */
.vcard {
  position: relative; overflow: hidden;
  height: 400px; background: var(--s3);
  display: block;
}
.vcard--wide { grid-column: span 2; height: 460px; }
.vcard-img { position: absolute; inset: 0; }
.vcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.52) saturate(.75);
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .5s;
}
.vcard:hover .vcard-img img { transform: scale(1.07); filter: brightness(.7) saturate(.95); }
.vcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,5,4,.96) 0%, rgba(6,5,4,.35) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem;
}
.vcard-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem; line-height: 1;
  color: rgba(255,255,255,.06);
  align-self: flex-end;
  transition: color .4s;
}
.vcard:hover .vcard-num { color: rgba(200,168,74,.16); }
.vcard-body { transform: translateY(10px); transition: transform .4s ease; }
.vcard:hover .vcard-body { transform: translateY(0); }
.vcard-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: .75rem;
  margin-bottom: .55rem;
}
.vcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.65rem;
  color: var(--cream); line-height: 1.1;
}
.live-badge {
  font-size: .56rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--brd);
  padding: .2rem .55rem; white-space: nowrap; flex-shrink: 0;
  transition: all .2s;
}
.live-badge:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.vcard-desc {
  font-size: .8rem; color: rgba(237,232,222,.58);
  line-height: 1.65; margin-bottom: .7rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s .05s, transform .35s .05s;
}
.vcard:hover .vcard-desc { opacity: 1; transform: none; }
.vcard-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: .3rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s .1s, transform .35s .1s;
}
.vcard:hover .vcard-tags { opacity: 1; transform: none; }
.vcard-tags li {
  font-size: .57rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(255,255,255,.1);
  padding: .18rem .52rem;
}
/* gold left reveal line */
.vcard::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  z-index: 2;
}
.vcard:hover::before { transform: scaleY(1); }

/* venture detail link */
.vcard-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-top: .6rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s .15s, transform .35s .15s;
}
.vcard-link::after { content: '→'; }
.vcard:hover .vcard-link { opacity: 1; transform: none; }

/* ── CTA ── */
.cta {
  padding: 10rem 0;
  background: var(--s1);
  text-align: center;
  position: relative;
}
.cta::before, .cta::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brd), transparent);
}
.cta::before { top: 0; } .cta::after { bottom: 0; }
.cta-content { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem,4vw,3rem); }
.cta-pre {
  font-size: .68rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem;
}
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: clamp(4rem,10vw,9.5rem);
  line-height: .95; letter-spacing: -.02em;
  margin-bottom: 2.75rem;
}
.cta-heading em { font-style: italic; color: var(--gold); }

/* ── CONTACT ── */
.contact { padding: 9rem 0; }
.contact-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: clamp(3rem,5vw,5rem);
  line-height: 1; letter-spacing: -.01em; margin-bottom: 2.5rem;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; flex-direction: column; gap: .3rem; }
.ci-label {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase; color: var(--muted);
}
.ci-value { font-size: 1rem; color: var(--cream); }
.site-card {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--brd-f);
  transition: padding-left .25s;
}
.site-card:first-of-type { border-top: 1px solid var(--brd-f); }
.site-card:hover { padding-left: .5rem; }
.site-card:hover .sc-url { color: var(--gold); }
.sc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--subtle); letter-spacing: .1em; min-width: 2rem;
}
.sc-name { font-weight: 500; font-size: 1rem; flex: 1; color: var(--cream); }
.sc-url {
  font-size: .67rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--brd-f); padding: 2.5rem 0; background: var(--s1); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3rem);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .15em; color: var(--cream);
}
.footer-brand p {
  font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-top: .22rem;
}
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .67rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .62rem; color: var(--subtle); width: 100%; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .stat-col { display: flex; }
  .stat { flex: 1; border-bottom: none !important; border-right: 1px solid var(--brd); }
  .stat:last-child { border-right: none; }
  .ventures-grid { grid-template-columns: repeat(2,1fr); }
  .vcard--wide { grid-column: span 1; height: 380px; }
  .vcard { height: 360px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .hero-foot { grid-template-columns: 1fr 1fr; }
  .hero-cta { grid-column: 1/-1; flex-direction: row; align-items: center; }
}
@media (max-width: 640px) {
  .ventures-grid { grid-template-columns: 1fr; background: none; gap: 3px; }
  .vcard, .vcard--wide { height: 300px !important; grid-column: span 1 !important; }
  .ventures-hdr { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .vh-right { text-align: left; }
  .hero-foot { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,5,4,.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 2rem clamp(1.5rem,4vw,3rem);
    gap: 1.75rem; border-bottom: 1px solid var(--brd-f); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .stat-col { flex-direction: column; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--brd) !important; }
  .stat:last-child { border-bottom: none !important; }
}
