/* ===================== VARIABLES ===================== */
:root {
  --red: #C8102E;
  --red-light: #e8162f;
  --red-muted: #8a0c20;
  --black: #0a0a0a;
  --white: #fafaf8;
  --offwhite: #f2f0eb;
  --gray: #888680;
  --gray-light: #d6d4cf;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --nav-h: 68px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--black); }

/* ===================== NAV ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 2rem; height: var(--nav-h);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--black);
  flex: 1;
}
.nav-links {
  display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); font-weight: 400;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  margin-left: 2.5rem;
}
.nav-cta a {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--black);
  transition: background 0.3s, color 0.3s;
}
.nav-cta a:hover { background: var(--black); color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  margin-left: 1rem;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; align-items: center;
  gap: 1.5rem; padding: 2rem;
  background: rgba(250,250,248,0.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
.mobile-cta {
  padding: 12px 32px; border: 1px solid var(--black);
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--white);
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Video Logo */
.logo-video-wrap {
  display: flex; align-items: center; justify-content: center;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
#logo3d {
  width: 80vw;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(200,16,46,0.25));
}

/* Hero motive text */
.hero-motive {
  position: absolute; bottom: 14%; right: 8%;
  display: flex; flex-direction: column; align-items: flex-end;
}
.motive-line {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.01em;
  color: var(--black); opacity: 0;
  transform: translateX(40px);
  animation: motiveIn 0.9s var(--transition) forwards;
}
.motive-line:nth-child(1) { animation-delay: 0.3s; }
.motive-line:nth-child(2) { animation-delay: 0.55s; font-style: italic; color: var(--red); }
.motive-line:nth-child(3) { animation-delay: 0.8s; }
@keyframes motiveIn {
  to { opacity: 1; transform: translateX(0); }
}

/* Corner texts */
.hero-corner-text {
  position: absolute; font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gray);
  opacity: 0; animation: fadeUp 1s 1.2s var(--transition) forwards;
}
.top-right { top: calc(var(--nav-h) + 1.5rem); right: 2rem; }
.bottom-left { bottom: 2rem; left: 2rem; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s 1.5s var(--transition) forwards;
}
.hero-scroll-hint span { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.15s; }

/* ===================== STORY ===================== */
#story {
  padding: 10rem 2rem 6rem;
  max-width: 1400px; margin: 0 auto;
}
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start;
}
.story-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 2rem; font-weight: 400;
}
.story-heading {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.15; color: var(--black);
}
.story-heading em { font-style: italic; color: var(--red); }
.story-right p {
  font-size: 0.9rem; line-height: 1.95; color: #444; margin-bottom: 1.5rem;
  font-weight: 300;
}
.story-quote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--gray); border-left: 2px solid var(--red);
  padding-left: 1.2rem; margin: 2.5rem 0 !important;
}
.btn-outline {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; border: 1px solid var(--black);
  padding: 13px 28px; transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.story-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-top: 7rem; color: var(--red); font-size: 0.6rem;
  opacity: 0.5;
}

/* ===================== COLLECTION ===================== */
#collection {
  padding: 6rem 2rem 10rem;
  max-width: 1400px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 5rem;
}
.section-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem; display: block;
}
.section-header h2 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}
.section-sub {
  margin-top: 1rem; color: var(--gray);
  font-size: 0.85rem; letter-spacing: 0.1em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  transition-delay: var(--delay, 0s);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--offwhite);
}
.product-img-wrap img {
  transition: transform 0.7s var(--transition);
}
.product-img-wrap:hover img { transform: scale(1.06); }
.product-img-wrap.img-missing {
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap.img-missing::after {
  content: 'VENVAA'; font-family: var(--serif); font-size: 1.6rem;
  color: rgba(200,16,46,0.2); letter-spacing: 0.3em;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
  opacity: 0; transition: opacity 0.4s var(--transition);
}
.product-img-wrap:hover .product-overlay { opacity: 1; }
.overlay-name {
  font-family: var(--serif); font-size: 1.4rem; color: var(--white);
  font-weight: 300; letter-spacing: 0.05em;
}
.overlay-detail {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.overlay-btn {
  margin-top: 0.5rem; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; border: 1px solid var(--white);
  color: var(--white); padding: 9px 22px;
  transition: background 0.3s, color 0.3s;
}
.overlay-btn:hover { background: var(--white); color: var(--black); }
.product-info {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1rem 0 0.4rem;
  border-bottom: 1px solid var(--gray-light);
}
.product-num {
  font-size: 0.6rem; color: var(--red); letter-spacing: 0.15em;
}
.product-name {
  font-family: var(--serif); font-size: 1.05rem;
  flex: 1; padding: 0 1rem;
}
.product-price {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em;
}

/* Feature card */
.card-feature {
  background: var(--black); display: flex;
  align-items: center; justify-content: center;
}
.card-feature .product-img-wrap { display: none; }
.card-feature .product-info { display: none; }
.feature-inner {
  padding: 3rem 2.5rem; text-align: center; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.feature-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
}
.feature-inner h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  line-height: 1.2;
}
.feature-inner h3 em { font-style: italic; color: var(--red); }
.feature-inner p {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em; line-height: 1.7;
}
.btn-red {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; background: var(--red); color: var(--white);
  padding: 12px 28px; margin-top: 0.5rem;
  transition: background 0.3s;
}
.btn-red:hover { background: var(--red-light); }

/* ===================== ABOUT ===================== */
#about {
  background: var(--offwhite);
  padding: 10rem 2rem;
}
.about-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem;
  align-items: center;
}
.about-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.about-logo-mark {
  font-family: var(--serif); font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 600; color: var(--red);
  line-height: 1; opacity: 0.12;
  user-select: none;
  animation: logoMark 8s ease-in-out infinite alternate;
}
@keyframes logoMark {
  from { opacity: 0.08; transform: scale(0.96); }
  to   { opacity: 0.18; transform: scale(1.04); }
}
.about-right h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; margin: 1.5rem 0 2rem; line-height: 1.1;
}
.about-right h2 em { font-style: italic; color: var(--red); }
.about-right p {
  font-size: 0.9rem; line-height: 1.95; color: #444;
  margin-bottom: 1.4rem; font-weight: 300;
}
.about-pillars {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  border-top: 1px solid var(--gray-light); padding-top: 2rem;
}
.pillar { display: flex; flex-direction: column; gap: 6px; }
.pillar-num {
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--red); font-style: italic;
}
.pillar-text {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
}

/* ===================== FOOTER ===================== */
#footer {
  background: var(--black); color: var(--white);
  padding: 5rem 2rem 2rem;
}
.footer-top {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 3rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col-head {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.4rem;
}
.footer-col a {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .card-feature { grid-column: 1 / -1; min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-logo-wrap { display: none; }
  .footer-top { flex-direction: column; }

  #logo3d { width: clamp(220px, 70vw, 360px); }
  .hero-motive { right: 4%; bottom: 18%; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .about-pillars { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  #story { padding: 6rem 1.2rem 4rem; }
  #collection { padding: 4rem 1.2rem 6rem; }
  #about { padding: 6rem 1.2rem; }
}
