/* ============================================================
   VinoValor — Coming Soon landing
   Palette: dark wine cellar + gold + cream
   ============================================================ */

:root {
  --bg: #0b0807;
  --gold: #c9a14a;
  --gold-light: #e8c97a;
  --gold-deep: #a87c2e;
  --cream: #f4ecdd;
  --wine: #722f37;
  --muted: #b9a78e;
  --max: 1100px;
  --gold-grad: linear-gradient(135deg, #e8c97a 0%, #c9a14a 45%, #a87c2e 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: radial-gradient(120% 80% at 50% -10%, #1c1310 0%, var(--bg) 55%, #060403 100%);
  color: var(--cream);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* line icons */
.ic {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Ornamental divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin: 0 auto;
}
.ornament i {
  display: block;
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,161,74,.75));
}
.ornament i:last-child { transform: scaleX(-1); }
.orn-mark { filter: drop-shadow(0 0 6px rgba(201,161,74,.25)); }
.ornament.gold-line { margin-bottom: 3rem; }
.lozenge {
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: var(--gold-grad);
  box-shadow: 0 0 10px rgba(201,161,74,.5);
}

/* ---------- Ambient floating glows ---------- */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.ambient span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,74,.18), transparent 70%);
  filter: blur(8px);
  animation: float 14s ease-in-out infinite;
}
.ambient span:nth-child(1){ width:220px;height:220px; top:8%;  left:6%;  animation-delay:0s; }
.ambient span:nth-child(2){ width:160px;height:160px; top:60%; left:82%; animation-delay:-3s; }
.ambient span:nth-child(3){ width:120px;height:120px; top:78%; left:12%; animation-delay:-6s; }
.ambient span:nth-child(4){ width:200px;height:200px; top:18%; left:78%; animation-delay:-9s; }
.ambient span:nth-child(5){ width:90px; height:90px;  top:42%; left:48%; animation-delay:-2s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity:.5; }
  50%     { transform: translateY(-30px) scale(1.12); opacity:.9; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  /* Drop a real cellar photo at assets/bg-cave.jpg to make it photographic.
     If the file is absent, only the dark overlay shows over the body gradient. */
  background:
    linear-gradient(rgba(11,8,7,.72), rgba(6,4,3,.92)),
    url('assets/bg-cave.jpg') center / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 45%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; width: 100%; }

.brand { margin-bottom: 1.6rem; }
.brand__logo {
  display: block;
  width: min(420px, 82vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.5));
}

.coming {
  font-family: "Playfair Display", serif; font-weight: 900;
  line-height: .95; letter-spacing: .04em; margin: 1rem 0 1.6rem;
}
.coming__word {
  display: block; font-size: clamp(3.2rem, 14vw, 7rem);
  opacity: 0; filter: blur(14px); transform: translateY(40px);
  animation: comingIn 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.coming__gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; animation-delay: .25s; }
.coming__cream { color: var(--cream); animation-delay: .55s; }
@keyframes comingIn { to { opacity: 1; filter: blur(0); transform: translateY(0); } }

.hero__lead {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: var(--muted); max-width: 30em; margin: 0 auto 2rem;
}

/* ---------- Waitlist form ---------- */
.waitlist { display: flex; gap: .6rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist__input {
  flex: 1 1 220px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,161,74,.35); border-radius: 999px;
  padding: .85rem 1.3rem; color: var(--cream);
  font-family: inherit; font-size: .95rem; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.waitlist__input::placeholder { color: rgba(185,167,142,.7); }
.waitlist__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,.18); }
.waitlist__btn {
  flex: 0 0 auto; border: none; border-radius: 999px;
  padding: .85rem 1.6rem; background: var(--gold-grad);
  color: #1a1208; font-family: inherit; font-weight: 600;
  font-size: .9rem; letter-spacing: .02em; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.waitlist__btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 8px 24px rgba(201,161,74,.35); }
.waitlist__msg { min-height: 1.4em; margin-top: .9rem; font-size: .9rem; color: var(--gold-light); opacity: 0; transition: opacity .4s; }
.waitlist__msg.show { opacity: 1; }
.waitlist__input.invalid { border-color: #c75c5c; box-shadow: 0 0 0 3px rgba(199,92,92,.18); }

.scroll-cue { width: 26px; height: 42px; border: 2px solid rgba(201,161,74,.5); border-radius: 14px; margin: 2.6rem auto 0; position: relative; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%{opacity:0;top:8px} 30%{opacity:1} 100%{opacity:0;top:24px} }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  position: relative; z-index: 1; max-width: var(--max);
  margin: 0 auto; padding: 4.5rem 1.5rem;
}
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature {
  text-align: center; padding: 2rem 1.2rem;
  border: 1px solid rgba(201,161,74,.16); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  transition: transform .35s, border-color .35s, background .35s;
}
.feature:hover {
  transform: translateY(-6px); border-color: rgba(201,161,74,.45);
  background: linear-gradient(180deg, rgba(201,161,74,.06), rgba(255,255,255,0));
}
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 70px; height: 70px; margin-bottom: 1rem;
  border: 1px solid rgba(201,161,74,.4); border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle at 50% 30%, rgba(201,161,74,.12), transparent 70%);
}
.feature h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 1.12rem; letter-spacing: .04em; color: var(--cream);
  text-transform: uppercase;
}

/* ============================================================
   PROCESS (scène restaurant)
   ============================================================ */
.scene {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201,161,74,.06), transparent 60%),
    linear-gradient(180deg, #100b09, #0a0706);
}
.process {
  position: relative; z-index: 1; max-width: var(--max);
  margin: 0 auto; padding: 4.5rem 1.5rem 5rem; text-align: center;
  border-radius: 22px;
}
.eyebrow {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); font-size: 1rem; margin-bottom: .4rem;
}
.section-title {
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.7rem); letter-spacing: .02em; color: var(--cream);
}

.steps {
  list-style: none; display: flex; align-items: flex-start;
  justify-content: center; flex-wrap: wrap; gap: .5rem 1rem;
  margin: 3rem auto 0; max-width: 980px;
}
.step { flex: 1 1 140px; max-width: 170px; text-align: center; }
.step__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin-bottom: .8rem; color: var(--gold-light);
  border: 1px solid rgba(201,161,74,.4); border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(201,161,74,.12), transparent 70%);
}
.step h4 {
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: .25rem;
}
.step p { font-size: .85rem; color: var(--muted); }
.step__arrow { align-self: center; color: var(--gold); font-size: 1.4rem; opacity: .6; margin-top: 1.4rem; }

/* ============================================================
   SHOWCASE — panneau + mockup téléphone
   ============================================================ */
.showcase-section {
  position: relative; z-index: 1; max-width: var(--max);
  margin: 0 auto; padding: 4.5rem 1.5rem;
}
.showcase {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 3rem; align-items: center;
}
.showcase__title {
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.1; letter-spacing: .02em;
}
.showcase__sub {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--muted); margin: .3rem 0 1.6rem;
}
.benefits { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.8rem; }
.benefits li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .98rem; letter-spacing: .02em; color: var(--cream);
}
.benefits li .ic { color: var(--gold); flex: 0 0 auto; }
.process__cta {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem); color: var(--cream); max-width: 28em;
}

/* ---------- Phone mockup ---------- */
.phone {
  justify-self: center;
  width: 280px; max-width: 78vw;
  aspect-ratio: 280 / 560;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(160deg, #2a211a, #0c0907);
  border: 1px solid rgba(201,161,74,.35);
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.4) inset;
  position: relative;
}
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; border-radius: 0 0 14px 14px;
  background: #0c0907; z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: radial-gradient(120% 60% at 50% 0%, #1a120d, #0a0706);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: 1.4rem 1.1rem;
}
.rescard {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(201,161,74,.28); border-radius: 18px;
  padding: 1.3rem 1.15rem; text-align: left;
}
.rescard__check {
  display: flex; align-items: center; gap: .45rem;
  color: var(--gold-light); font-size: .78rem; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.rescard__check .ic { color: #7ed29b; stroke-width: 2.2; }
.rescard__place { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.15rem; color: var(--cream); }
.rescard__line { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.rescard__sep {
  margin: 1rem 0 .7rem; padding-top: .8rem;
  border-top: 1px solid rgba(201,161,74,.2);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light);
}
.rescard__bottle { display: flex; align-items: center; gap: .7rem; color: var(--gold-light); }
.rescard__bottle span { display: flex; flex-direction: column; line-height: 1.3; }
.rescard__bottle strong { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; color: var(--cream); font-weight: 600; }
.rescard__bottle em { font-style: normal; font-size: .78rem; color: var(--muted); }
.rescard__btn {
  margin-top: 1.2rem; text-align: center;
  background: var(--gold-grad); color: #1a1208;
  border-radius: 999px; padding: .7rem; font-size: .72rem;
  font-weight: 600; letter-spacing: .08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; text-align: center; padding: 1rem 1.5rem 2.5rem; }
.footer .ornament { margin-bottom: 2.2rem; }
.footer__connect {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem;
}
.socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.8rem; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid rgba(201,161,74,.4);
  border-radius: 50%; color: var(--gold-light);
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.social:hover { transform: translateY(-3px); background: var(--gold-grad); color: #1a1208; border-color: transparent; }
.footer__legal { font-size: .72rem; letter-spacing: .03em; color: rgba(185,167,142,.55); max-width: 40em; margin: 0 auto; }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .coming__word { opacity: 1; filter: none; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; }
  .benefits { align-items: center; }
  .showcase__text { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 860px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: none; }
}
@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .waitlist { flex-direction: column; }
  .waitlist__btn { width: 100%; }
  .ornament i { width: 48px; }
}
