/* ============================================================
   Saveur des Vins — Marmande
   Aesthetic: warm editorial maison de vins
   Bordeaux & charcoal · antique gold · grain
   ============================================================ */

:root {
  --ink:        #160b0e;   /* near-black burgundy */
  --ink-2:      #1f1014;   /* surface */
  --ink-3:      #2a161b;   /* raised surface */
  --wine:       #7a1b29;   /* bordeaux accent */
  --wine-deep:  #561019;
  --gold:       #c8a24c;   /* antique gold */
  --gold-soft:  #d8b96f;
  --cream:      #f3e9da;   /* primary text */
  --cream-dim:  #cdbca6;   /* muted text */
  --hair:       rgba(200,162,76,.22);
  --hair-soft:  rgba(243,233,218,.10);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Jost", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- grain overlay ---- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--wine); color: var(--cream); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.01em; overflow-wrap: break-word; word-break: break-word; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .6; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.2rem, 4vw, 3.2rem);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(18,9,11,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hair);
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav__brand { display: flex; align-items: center; text-decoration: none; color: var(--cream); }
.nav__logo { display: block; height: 52px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a {
  color: var(--cream); text-decoration: none; font-size: .9rem;
  letter-spacing: .04em; position: relative; padding: .2rem 0;
  transition: color .3s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-soft); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--hair); padding: .55rem 1.2rem !important;
  border-radius: 40px; transition: background .3s, color .3s, border-color .3s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; z-index: 110; padding: 4px; }
.nav__burger span { width: 26px; height: 2px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s; transform-origin: center; }
.nav.is-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Cross-promo: Saveur des Cafés (sister site) */
.nav__cafe { display: flex; align-items: center; padding: 0 !important; }
.nav__cafe img { height: 44px; width: auto; display: block; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.nav__cafe:hover img { opacity: .82; transform: translateY(-2px); }
.nav__cafe::after { display: none !important; }     /* neutralise the link underline */
.nav__cafe-mobile { display: none; }                /* desktop: hidden, see mobile block */

/* ============================================================ HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* Force GPU compositing — improves video rendering on iOS */
video { -webkit-transform: translateZ(0); transform: translateZ(0); }

/* Image fallback when the video can't autoplay (e.g. some iOS browsers) */
.hero--fallback .hero__video { display: none; }
.hero--fallback .hero__media {
  background: url("assets/wine-glass.jpg") center center / cover no-repeat;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 30%, transparent 0%, rgba(18,9,11,.35) 55%, rgba(18,9,11,.9) 100%),
    linear-gradient(180deg, rgba(18,9,11,.55) 0%, rgba(18,9,11,.2) 35%, rgba(18,9,11,.85) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3.2rem);
}
.hero__eyebrow {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .4em;
  color: var(--cream-dim); margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 300; line-height: .86; letter-spacing: -.03em;
  text-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero__title span { display: block; }
.hero__title-em { margin-left: clamp(2rem, 14vw, 11rem); color: var(--gold); }
.hero__title-em em { font-style: italic; font-weight: 300; }
.hero__tagline {
  margin-top: 2rem; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem); color: var(--cream);
  letter-spacing: .02em;
}
.hero__tagline span { color: var(--gold); margin: 0 .5rem; font-style: normal; }
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  letter-spacing: .06em; text-decoration: none; cursor: pointer;
  padding: .95rem 1.9rem; border-radius: 44px;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn--gold { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-3px); }
.btn--ghost { color: var(--cream); border: 1px solid var(--hair); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: var(--cream-dim); text-decoration: none;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================ MARQUEE */
.marquee { overflow: hidden; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--ink-2); padding: 1.3rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2rem); white-space: nowrap; color: var(--cream); }
.marquee__track .dot { color: var(--gold); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ MAISON */
.maison { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 12vw, 9rem) clamp(1.2rem, 4vw, 3.2rem); }
.maison__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.maison__media { position: relative; }
.maison__media img { width: 100%; height: auto; border-radius: 4px; display: block; filter: saturate(1.05) contrast(1.03); box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.maison__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--hair); border-radius: 4px; pointer-events: none; }
.maison__badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--wine-deep); border: 1px solid var(--hair);
  padding: 1.1rem 1.4rem; border-radius: 4px; max-width: 200px;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
}
.maison__badge-num { display: block; font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.maison__badge-word { font-size: .82rem; letter-spacing: .04em; color: var(--cream-dim); }
.maison__text h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: 1.6rem; }
.maison__text p { color: var(--cream-dim); margin-bottom: 1.2rem; max-width: 52ch; }
.maison__text strong { color: var(--cream); font-weight: 400; }
.maison__quote {
  margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--cream); max-width: 46ch;
}

/* ============================================================ SECTION HEAD */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 5.5vw, 4rem); }
.section-head--center { text-align: center; }
.section-head--center .kicker::before { display: none; }

/* ============================================================ SÉLECTIONS */
.selections { padding: clamp(4rem, 10vw, 7rem) 0; background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); border-top: 1px solid var(--hair); }
.cards {
  max-width: var(--maxw); margin: 3.5rem auto 0; padding: 0 clamp(1.2rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem;
}
.card {
  grid-column: span 2; position: relative;
  background: var(--ink-3); border: 1px solid var(--hair-soft);
  border-radius: 6px; padding: 2.2rem 1.8rem 1.8rem;
  min-height: 280px; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s, background .45s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .45s;
  background: radial-gradient(120% 120% at 100% 0%, rgba(122,27,41,.45), transparent 60%);
}
.card:hover { transform: translateY(-8px); border-color: var(--hair); }
.card:hover::before { opacity: 1; }
.card--feature { background: linear-gradient(165deg, var(--wine-deep), var(--ink-3)); border-color: var(--hair); }
.card--wide { grid-column: span 6; min-height: auto; flex-direction: row; align-items: center; gap: 2rem; flex-wrap: wrap; }
.card__num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); letter-spacing: .05em; }
.card h3 { font-size: clamp(1.4rem, 4.5vw, 1.9rem); margin: .8rem 0; overflow-wrap: break-word; hyphens: auto; }
.card--wide h3 { margin: 0; }
.card p { color: var(--cream-dim); font-size: .96rem; flex: 1; }
.card--wide p { flex: 1 1 320px; }
.card__tag {
  margin-top: 1.4rem; align-self: flex-start; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--hair);
  padding: .35rem .8rem; border-radius: 30px;
}
.card--wide .card__tag { margin-top: 0; }

/* ============================================================ DÉGUSTATIONS */
.degust { background: var(--ink-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.degust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.degust__text h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.6rem; }
.degust__text > p { color: var(--cream-dim); max-width: 52ch; margin-bottom: 1.8rem; }
.degust__list { list-style: none; margin-bottom: 2.2rem; }
.degust__list li { display: flex; gap: .9rem; padding: .7rem 0; border-bottom: 1px solid var(--hair-soft); font-size: 1.02rem; }
.degust__list span { color: var(--gold); }
.degust__figure { display: grid; place-items: center; }
.degust__glass {
  width: min(320px, 70vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--wine), var(--wine-deep) 70%);
  border: 1px solid var(--gold); display: grid; place-content: center; text-align: center;
  box-shadow: 0 40px 90px -30px rgba(122,27,41,.8), inset 0 0 60px rgba(0,0,0,.4);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(-8px) } 50%{ transform: translateY(8px) } }
.degust__big { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--cream); }
.degust__small { font-size: .9rem; letter-spacing: .1em; color: var(--gold-soft); text-transform: uppercase; }

/* ============================================================ AVIS */
.avis { padding: clamp(4rem, 10vw, 7rem) 0; }
.avis__grid {
  max-width: var(--maxw); margin: 3.5rem auto 0; padding: 0 clamp(1.2rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.quote {
  background: var(--ink-2); border: 1px solid var(--hair-soft); border-radius: 6px;
  padding: 2.2rem; position: relative; transition: transform .4s var(--ease), border-color .4s;
}
.quote::before { content: "“"; position: absolute; top: .2rem; left: 1.2rem; font-family: var(--serif); font-size: 4rem; color: var(--gold); opacity: .4; }
.quote:hover { transform: translateY(-6px); border-color: var(--hair); }
.quote blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--cream); margin: 1.4rem 0 1.4rem; }
.quote figcaption { font-size: .82rem; letter-spacing: .08em; color: var(--gold); }

/* ============================================================ CONTACT */
.contact { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-top: 1px solid var(--hair); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 4vw, 3.2rem); }
.contact__head h2 { font-size: clamp(2rem, 5.5vw, 4rem); margin-bottom: 1.4rem; }
.contact__tagline { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream-dim); }
.contact__tagline span { color: var(--gold); margin: 0 .4rem; }
.contact__cards { margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.info {
  display: flex; flex-direction: column; gap: .7rem;
  background: var(--ink-3); border: 1px solid var(--hair-soft); border-radius: 6px;
  padding: 1.8rem 1.6rem; text-decoration: none; color: var(--cream);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.info:hover { transform: translateY(-6px); border-color: var(--gold); background: var(--wine-deep); }
.info__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.info__value { font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; flex: 1; overflow-wrap: break-word; word-break: break-word; }
.info__action { font-size: .85rem; color: var(--cream-dim); letter-spacing: .04em; }
.info:hover .info__action { color: var(--gold-soft); }
.contact__note { margin-top: 1.6rem; max-width: 60ch; color: var(--cream-dim); font-style: italic; font-family: var(--serif); font-size: 1.1rem; }

/* ---- opening hours ---- */
.hours { margin-top: 3rem; max-width: 560px; }
.hours .info__label { display: block; margin-bottom: 1rem; }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table tr { border-bottom: 1px solid var(--hair-soft); transition: background .3s; }
.hours__table th, .hours__table td { padding: .85rem .4rem; text-align: left; font-weight: 300; }
.hours__table th { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); white-space: nowrap; }
.hours__table td { text-align: right; color: var(--cream-dim); font-size: .98rem; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.hours__table td strong { color: var(--gold-soft); font-weight: 400; }
.hours__table .is-closed th { color: var(--cream-dim); }
.hours__table .is-closed td { color: rgba(205,188,166,.45); font-style: italic; }
.hours__table .is-featured {
  background: linear-gradient(90deg, rgba(122,27,41,.32), rgba(122,27,41,.06));
  border-bottom-color: var(--hair);
  box-shadow: inset 3px 0 0 var(--gold);
}
.hours__table .is-featured th, .hours__table .is-featured td { color: var(--cream); }

/* ---- rating badge ---- */
.rating {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.8rem;
  text-decoration: none; padding: .6rem 1.2rem; border: 1px solid var(--hair);
  border-radius: 44px; transition: border-color .3s, transform .3s var(--ease);
}
.rating:hover { border-color: var(--gold); transform: translateY(-3px); }
.rating__score { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); line-height: 1; }
.rating__stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }
.rating__count { font-size: .82rem; letter-spacing: .06em; color: var(--cream-dim); }

/* ============================================================ FOOTER */
.footer { border-top: 1px solid var(--hair); padding: 3rem clamp(1.2rem, 4vw, 3.2rem) 2rem; max-width: var(--maxw); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; padding-bottom: 2rem; border-bottom: 1px solid var(--hair-soft); }
.footer__brand { font-family: var(--serif); font-size: 2rem; }
.footer__tag { color: var(--gold); letter-spacing: .1em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .8rem; color: var(--cream-dim); }

/* ============================================================ REVEAL */
.reveal, .reveal-up { opacity: 0; }
.reveal { transform: translateY(20px); animation: none; }
.hero .reveal { animation: rise .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.reveal-up { transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-up.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  /* Mobile dropdown menu */
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .6rem clamp(1.2rem, 4vw, 3.2rem) 1.4rem;
    background: rgba(18,9,11,.96);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 30px 50px -20px rgba(0,0,0,.7);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links a { font-size: 1.05rem; padding: 1rem .2rem; border-bottom: 1px solid var(--hair-soft); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { text-align: center; margin-top: .8rem; padding: .9rem 1.2rem !important; border-radius: 40px; }

  .maison__grid { grid-template-columns: 1fr; }
  .maison__media { max-width: 480px; }
  .degust__inner { grid-template-columns: 1fr; }
  .degust__figure { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 1; }
  .card--wide { grid-column: span 2; }
  .avis__grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Shift the framing right so the wine glass stays centered in portrait */
  .hero__video { object-position: 70% center; }
  .hero--fallback .hero__media { background-position: 70% center; }
  .nav__logo { height: 40px; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .card, .card--wide { grid-column: span 1; }
  .card--wide { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact__cards { grid-template-columns: 1fr; }
  .hero__title-em { margin-left: 2rem; }
  .maison__badge { left: 0; }
}

/* Extra-small phones: keep titles inside the viewport (< 390px) */
@media (max-width: 390px) {
  .hero__title { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero__tagline { font-size: 1.2rem; }
  .section-head h2, .maison__text h2, .degust__text h2, .contact__head h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .card h3 { font-size: clamp(1.35rem, 7vw, 1.7rem); }
  .hours__table th { font-size: .95rem; }
  .hours__table td { font-size: .82rem; }
}

/* Cross-promo in the mobile dropdown menu */
@media (max-width: 900px) {
  .nav__cafe { display: none; }
  .nav__cafe-mobile {
    display: flex; align-items: center; gap: .75rem;
    margin-top: 1rem; padding: 1.3rem .2rem 0 !important;
    border-top: 1px solid var(--hair-soft); border-bottom: 0 !important;
  }
  .nav__cafe-mobile img { height: 36px; width: auto; display: block; }
  .nav__cafe-mobile span { color: var(--cream-dim); font-size: .9rem; letter-spacing: .02em; }
  .nav__cafe-mobile::after { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .reveal-up { opacity: 1 !important; transform: none !important; }
}
