/* Navada Group, Venture Detail Pages */

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

:root {
  --black:   #060504;
  --s1:      #0c0a09;
  --s2:      #141210;
  --s3:      #1c1916;
  --gold:    #C8A84A;
  --gold-lt: #E5C978;
  --cream:   #EDE8DE;
  --muted:   #7A746C;
  --brd:     rgba(200,168,74,0.16);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,5,4,.92);
  border-color: var(--brd);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .12em;
  color: var(--cream);
}
.nav-logo em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .06em;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-back:hover { color: var(--gold); }
.nav-back svg { width: 16px; height: 16px; }

/* ── Hero ── */
.v-hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.v-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.45);
}
.v-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,5,4,.92) 0%, rgba(6,5,4,.3) 50%, rgba(6,5,4,.1) 100%);
}
.v-hero-content {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  padding-top: 72px;
  max-width: 900px;
}
.v-hero-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  right: clamp(1.5rem, 8vw, 8rem);
  bottom: clamp(2rem, 6vw, 5rem);
  pointer-events: none;
  user-select: none;
}
.v-section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.v-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.v-hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.v-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.v-hero-tags li {
  list-style: none;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border: 1px solid var(--brd);
  color: var(--muted);
  border-radius: 2px;
}

/* ── Page Body ── */
.v-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
}

/* ── Lead paragraph ── */
.v-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream);
  max-width: 780px;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--brd);
}

/* ── Section grid ── */
.v-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.v-section {
  padding: 2rem;
  background: var(--s1);
  border: 1px solid var(--brd);
  border-radius: 4px;
}
.v-section.v-section--full {
  grid-column: 1 / -1;
}
.v-section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--brd);
}
.v-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.v-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.v-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: .5rem;
  margin-top: .35rem;
  flex-shrink: 0;
}
.v-list li strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-bottom: .15rem;
}
.v-list li span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
}

/* ── Process steps ── */
.v-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.v-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.v-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .4;
}
.v-step-body strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: .2rem;
}
.v-step-body span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Gallery ── */
.v-gallery {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.v-gallery-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.v-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.v-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: brightness(.85);
  transition: filter .3s, transform .4s;
}
.v-gallery-grid img:hover {
  filter: brightness(1);
  transform: scale(1.01);
}

/* ── CTA strip ── */
.v-cta {
  border-top: 1px solid var(--brd);
  padding-top: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.v-cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 500px;
}
.v-cta-text em { font-style: italic; color: var(--gold-lt); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brd);
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Footer ── */
.footer {
  background: var(--s1);
  border-top: 1px solid var(--brd);
  padding: 2rem clamp(1.5rem, 8vw, 8rem);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--cream);
  display: block;
}
.footer-brand p {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .08em;
  margin-top: .2rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .06em;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── Venture nav strip ── */
.v-nav-strip {
  background: var(--s1);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
  padding: 1.5rem clamp(1.5rem, 8vw, 8rem);
}
.v-nav-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.v-nav-strip-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.v-nav-strip-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.v-nav-strip-links a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}
.v-nav-strip-links a:hover,
.v-nav-strip-links a.active { color: var(--gold); }

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .v-sections { grid-template-columns: 1fr; }
  .v-section.v-section--full { grid-column: 1; }
  .v-hero-num { display: none; }
  .v-cta { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .v-nav-strip-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .v-nav-strip-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .v-gallery-grid { grid-template-columns: 1fr; }
  .v-gallery-grid img { height: 220px; }
}

/* ── Grain overlay ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 8s steps(1) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-3%)} 20%{transform:translate(2%,1%)}
  30%{transform:translate(-1%,2%)} 40%{transform:translate(3%,-1%)} 50%{transform:translate(-2%,3%)}
  60%{transform:translate(1%,-2%)} 70%{transform:translate(-3%,1%)} 80%{transform:translate(2%,2%)}
  90%{transform:translate(-1%,-1%)}
}

/* ── Custom cursor ── */
.cursor-dot, .cursor-ring {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  opacity: .6;
  transition: width .2s, height .2s, opacity .2s;
}
.cursor-ring.hover {
  width: 44px; height: 44px;
  opacity: .9;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}
