/* Golden Wine — page « bientôt en ligne »
   Charte reprise de la démo : bordeaux profond, or, crème. */

:root {
  --bordeaux: #5A1220;
  --bordeaux-deep: #1a1416;
  --gold: #C9A227;
  --gold-soft: #e0c46a;
  --cream: #FBF7EF;
  --ink: #2a2224;
}

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

html, body { height: 100%; overflow-x: hidden; }

body {
  font-family: 'Mulish', system-ui, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 18%, rgba(201,162,39,.16), transparent 55%),
    linear-gradient(160deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ---- layout ---- */
.uc {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.uc__inner {
  max-width: 620px;
  animation: rise .9s cubic-bezier(.2,.7,.2,1) both;
  position: relative;
  z-index: 2;
}

/* ---- bouteille décorative inclinée ---- */
.uc__bottle {
  position: absolute;
  right: 4vw;
  bottom: 0;
  height: 74vh;
  max-height: 700px;
  width: auto;
  z-index: 1;
  transform: rotate(14deg);
  transform-origin: bottom center;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
  opacity: 0;
  animation: bottleIn 1.1s .25s cubic-bezier(.2,.7,.2,1) forwards,
             sway 6s 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bottleIn {
  from { opacity: 0; transform: rotate(14deg) translateY(40px); }
  to   { opacity: .92; transform: rotate(14deg) translateY(0); }
}
@keyframes sway {
  0%, 100% { transform: rotate(14deg); }
  50%      { transform: rotate(11deg); }
}

/* ---- logo ---- */
.uc__logo img {
  width: 200px;
  height: 200px;
  max-width: 46vw;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.45));
}

.uc__brand {
  display: block;
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---- titre ---- */
.uc__title {
  margin-top: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(2rem, 6vw, 3.4rem);
}
.uc__title .lang-fr { display: block; }
.uc__title .lang-de {
  display: block;
  margin-top: 6px;
  font-size: .62em;
  font-style: italic;
  color: rgba(251,247,239,.72);
}

/* ---- textes ---- */
.uc__lead {
  margin-top: 22px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
}
.uc__lead .lang-de {
  display: block;
  color: rgba(251,247,239,.7);
  font-size: .94em;
}

.uc__note {
  margin-top: 4px;
  font-size: .95rem;
  color: rgba(251,247,239,.75);
  line-height: 1.6;
}
.uc__note .lang-de {
  display: block;
  font-style: italic;
  color: rgba(251,247,239,.55);
}

/* ---- séparateur ---- */
.uc__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px auto;
  max-width: 320px;
}
.uc__divider span:not(.uc__grape) {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.uc__grape {
  color: var(--gold);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

/* ---- footer ---- */
.uc__foot {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(251,247,239,.45);
}

/* ---- anim ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .uc__inner { animation: none; }
  .uc__bottle {
    animation: none;
    opacity: .9;
  }
}

/* tablette : bouteille plus discrète en arrière-plan */
@media (max-width: 900px) {
  .uc__bottle {
    right: -6vw;
    height: 70vh;
    opacity: .5;
  }
  @keyframes bottleIn { from,to { opacity: .5; } }
}

@media (max-width: 480px) {
  .uc__foot { position: static; margin-top: 40px; }
  .uc { justify-content: flex-start; padding-top: 56px; }
  .uc__bottle {
    right: -14vw;
    bottom: 0;
    height: 60vh;
    opacity: .28;
  }
}
