/* ------------ Base & Layout ------------ */

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

:root {
  --bg: #04060a;
  --bg-alt: #081018;
  --bg-light: #0b1118;
  --text: #f4f4f5;
  --muted: #a5a7b3;
  --accent: #d6b071;
  --accent-soft: rgba(214, 176, 113, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(9, 11, 19, 0.75);
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* Parallax background image */
  background-image: url("/assets/LDV_dark.jpg"); /* <- your image */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed; /* key for parallax-style effect */
  color: var(--text);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* New image-based logo */
.nav__logo-img {
  height: 60px;       /* adjust to taste */
  width: auto;
  display: block;
}

/* You can now remove this if you want, it's unused:
.nav__logo-mark { ... }
*/

/* Utility container */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Page */

.page {
  min-height: 100vh;
  color: var(--text);
}

/* ------------ Navigation ------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 8, 0.98),
    rgba(3, 4, 8, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5vw;
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav__logo-mark {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 10% 0, #ffffff22, transparent 55%);
}

.nav__brand-text {
  opacity: 0.85;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav__links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 0.2rem;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--accent), transparent);
  transition: width 0.25s ease-out;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

/* ------------ Hero ------------ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 64px; /* to clear fixed nav */
  overflow: hidden;
}

/* Video background */

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
  transform-origin: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.46)),
    linear-gradient(to right, rgba(1, 2, 5, 0.56), rgba(1, 2, 5, 0.2));
  mix-blend-mode: multiply;
}

/* Hero content */

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 5vw 3.5rem;
}

.hero__text {
  max-width: 520px;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.hero__tagline {
  font-size: 1.05rem;
  color: #e0e3f0;
  margin: 0 0 1.6rem;
}

.hero__intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

/* Coming soon badge */

.hero__comingsoon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 176, 113, 0.6);
  background: radial-gradient(circle at top left, rgba(214, 176, 113, 0.4), rgba(6, 7, 12, 0.95));
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__comingsoon-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hero form */

.hero__form {
  max-width: 420px;
}

.hero__form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero__form-row {
  display: flex;
  gap: 0.75rem;
}

.hero__form-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), rgba(2, 3, 8, 0.96));
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

.hero__form-row input::placeholder {
  color: #707285;
}

.hero__form-row input:focus {
  border-color: rgba(214, 176, 113, 0.7);
  box-shadow: 0 0 0 1px rgba(214, 176, 113, 0.25);
}

.hero__form-row button {
  border-radius: 999px;
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #f1d8a6, #cf9c55);
  color: #1a1205;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.hero__form-row button:hover {
  filter: brightness(1.03);
}

.hero__form-hint {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Bottle column */

.hero__bottle {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}

.bottle__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(214, 176, 113, 0.35), transparent 60%);
  opacity: 0.9;
  filter: blur(18px);
  transform: translateY(22px);
}

.bottle__image {
  position: relative;
  z-index: 1;
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.9));
  animation: bottleFloat 9s ease-in-out infinite;
}

/* Scroll indicator */

.hero__scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  margin: 0.4rem auto 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.12);
}

.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  animation: scrollLine 1.4s linear infinite;
}

/* ------------ Sections ------------ */

.section {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--dark {
  background: radial-gradient(circle at top, #11131f, #03040a 58%, #020308 100%);
}



.section__inner {
  position: relative;
  z-index: 1;
}

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.section__tag {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.section__lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2.3rem;
}

/* Grid layouts */

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */

.card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  background-clip: padding-box;
  overflow: hidden;
  /* smooth hover animation */
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.35s ease-out,
    background 0.35s ease-out;
  will-change: transform, box-shadow;
}


/* subtle light sheen on hover */
.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  opacity: 0;
  transform: translate3d(-32px, -32px, 0);
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out;
  pointer-events: none;
}

/* hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  border-color: rgba(214, 176, 113, 0.55);
}

.card:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.card h3 {
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.card p {
  font-size: 0.9rem;
  color: #dddddd;
  line-height: 1.7;
}

.card--glass {
  background: linear-gradient(
    135deg,
    rgba(18, 21, 34, 0.88),
    rgba(6, 8, 16, 0.96)
  );
  backdrop-filter: blur(16px);
}

.card--outline {
  background: radial-gradient(circle at top left, rgba(214, 176, 113, 0.12), rgba(4, 6, 12, 0.96));
  border-color: rgba(214, 176, 113, 0.35);
}

.card--minimal {
  background: radial-gradient(circle at top, rgba(58, 57, 57, 0.8), rgba(5, 7, 14, 0.96));
  border-radius: 24px;
}

/* Vision list */

.vision__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.vision__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 14, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.vision__bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 0.3rem;
  background: radial-gradient(circle at 20% 0, #ffffff, #d6b071);
}

.vision__item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.vision__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* USP */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.usp-item {
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), rgba(5, 7, 14, 0.97));
  position: relative;
}

.usp-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(214, 176, 113, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.usp-item:hover::before {
  opacity: 1;
}

.usp-item h3 {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  color: #e7e0d6;
}

.usp-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ------------ Footer ------------ */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #040509;
  padding: 1.6rem 0 1.8rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  padding-bottom: 2vh;

}

.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__logo-mark {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.footer__dot {
  opacity: 0.5;
}

/* ------------ Animations & Scroll reveal ------------ */

@keyframes bottleFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Reveal effect */

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance */

.hero__text,
.hero__bottle {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero--visible .hero__text,
.hero--visible .hero__bottle {
  opacity: 1;
  transform: translateY(0);
}

/* ------------ Responsive ------------ */

@media (max-width: 960px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    gap: 3rem;
  }

  .hero__bottle {
    align-self: center;
    padding-bottom: 5vh;
  }

  .grid--3col,
  .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }



}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .hero__content {
    padding: 4rem 5vw 3rem;
  }

  .hero__form-row {
    flex-direction: column;
  }

  .hero__form-row button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .grid--2col,
  .grid--3col,
  .usp-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 4.2rem 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
.footer__meta {
  font-size: x-small;
}

  body {
    background-attachment: scroll;
    background-size: 130% auto;  /* tweak 110–150% to taste */
    background-position: center top;
    background-color: #020308;
  }
}


.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding-block: 0.5rem;
  font-size: 0.8rem;
}


  .hero__comingsoon {
    justify-content: center;
    text-align: center;
    align-items: center;
    }

  .hero__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }