/* ==========================================================================
   Mega Events — Mumbai  ·  V2
   Hero: Reference A (eraayaevents.com) — full-screen slider.
   Body: Reference B (hiraevents.pages.dev) — tokens, type and rhythm read off
         the live site, see REFERENCE_NOTES.md.
   Everything scoped under .me-site so it stays WordPress-portable.
   Mobile is the primary target; desktop rules are the min-width additions.
   ========================================================================== */

/* ---------------------------------------------------------------- FONTS */
@font-face {
  font-family: 'Marcellus';
  src: url('assets/fonts/marcellus-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-latin-var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------- TOKENS */
.me-site {
  --ink:       #220A20;   /* peacock ink — primary dark ground */
  --slate:     #371330;   /* raised surface on dark */
  --rose:      #BE2E63;   /* kumkum rose — accent */
  --gold:      #C8952E;   /* gold leaf — eyebrows, rules, primary fill */
  --gold-deep: #B07F1F;
  --marigold:  #E8871E;
  --ivory:     #FBF7F0;   /* ivory silk — light ground */
  --sandstone: #E9DFD3;   /* hairlines, card borders */
  --fern:      #241019;   /* body text on ivory */
  --sage:      #6E5A66;   /* secondary text on ivory */
  --wa:        #25D366;
  --wa-dark:   #1FAF52;

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-fade: cubic-bezier(.4, 0, .2, 1);
  --maxw:      1280px;
  --gutter:    20px;
  --sec:       72px;
  --head-h:    68px;

  --serif: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
@media (min-width: 768px) {
  .me-site { --gutter: 32px; --sec: 120px; --head-h: 84px; }
}

/* ----------------------------------------------------------- BASE/RESET */
.me-site *,
.me-site *::before,
.me-site *::after { box-sizing: border-box; }

.me-site {
  margin: 0;
  background: var(--ivory);
  color: var(--fern);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
.me-site.is-locked { overflow: hidden; }

.me-site h1, .me-site h2, .me-site h3, .me-site h4,
.me-site p, .me-site figure, .me-site blockquote,
.me-site ul, .me-site ol, .me-site dl, .me-site dd { margin: 0; }
.me-site ul, .me-site ol { padding: 0; list-style: none; }
.me-site img { display: block; max-width: 100%; height: auto; }
.me-site a { color: inherit; text-decoration: none; }
.me-site button, .me-site input, .me-site select, .me-site textarea {
  font: inherit; color: inherit; background: none; border: 0; border-radius: 0;
}
.me-site :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.me-site .sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------ TYPOGRAPHY */
.me-site h1, .me-site h2, .me-site h3, .me-site .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.005em;
}
.me-site h2 { font-size: 28px; line-height: 1.15; }
.me-site h3 { font-size: 20px; line-height: 1.25; }
@media (min-width: 768px) {
  .me-site h2 { font-size: 44px; line-height: 1.15; }
  .me-site h3 { font-size: 26px; line-height: 1.25; }
}

.me-site p { font-size: 15px; line-height: 1.62; }
@media (min-width: 768px) { .me-site p { font-size: 16px; line-height: 1.6; } }

/* the ◆ eyebrow — Reference B's one repeated ornament.
   Drawn as a rotated square, not a glyph: U+25C6 is absent from both latin
   subsets and would otherwise fall back to a system face. */
.me-site .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.me-site .eyebrow::before {
  content: '';
  flex: none;
  width: 6px; height: 6px;
  background: currentColor;
  transform: rotate(45deg);
}
.me-site .eyebrow--center { justify-content: center; }
.me-site .lede { color: var(--sage); max-width: 62ch; }
.me-site .on-ink .lede { color: rgba(251, 247, 240, .75); }

/* --------------------------------------------------------------- LAYOUT */
.me-site .wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.me-site .section { padding-block: var(--sec); }
.me-site .on-ink { background: var(--ink); color: var(--ivory); }
.me-site .on-ink h2, .me-site .on-ink h3 { color: var(--ivory); }
.me-site .on-ivory { background: var(--ivory); color: var(--fern); }
.me-site .sec-head { margin-bottom: 34px; }
.me-site .sec-head .eyebrow { margin-bottom: 14px; }
.me-site .sec-head .lede { margin-top: 12px; }
.me-site .sec-head--center { text-align: center; }
.me-site .sec-head--center .lede { margin-inline: auto; }
@media (min-width: 768px) { .me-site .sec-head { margin-bottom: 48px; } }

/* pill button — 1px gold, fully round, Manrope 700 */
.me-site .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fern);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.me-site .pill:hover { background: var(--gold); color: var(--ink); }
.me-site .on-ink .pill { color: var(--ivory); }
.me-site .on-ink .pill:hover { color: var(--ink); }
.me-site .pill--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.me-site .pill--solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }
.me-site .pill--wa { background: var(--wa); border-color: var(--wa); color: #08210F; }
.me-site .pill--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #08210F; }
.me-site .pill svg { flex: none; width: 18px; height: 18px; fill: currentColor; }

/* gold inline link with the ◆ marker */
.me-site .golink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-deep);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.me-site .golink::before {
  content: '';
  flex: none;
  width: 5px; height: 5px;
  background: currentColor;
  transform: rotate(45deg);
}
.me-site .golink:hover { color: var(--rose); gap: 12px; }
/* 44px minimum on every tap target, including inline gold links */
.me-site .golink { min-height: 44px; padding-block: 10px; }
.me-site .on-ink .golink { color: var(--gold); }
.me-site .on-ink .golink:hover { color: var(--marigold); }

/* --------------------------------------------------------- IMAGE / LQIP */
.me-site .ph {
  position: relative;
  overflow: hidden;
  background-color: var(--sandstone);
  background-size: cover;
  background-position: center;
}
.me-site .on-ink .ph { background-color: var(--slate); }
.me-site .ph > img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.me-site .ph > img.is-in, .me-site.no-js .ph > img { opacity: 1; }

/* ========================================================== SITE HEADER */
.me-site .head {
  position: fixed;
  z-index: 40;
  top: 0; left: 0; right: 0;
  height: var(--head-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.me-site .head.is-stuck {
  background: var(--ink);
  border-bottom-color: rgba(200, 149, 46, .35);
}
.me-site .head__in {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.me-site .brand { display: flex; align-items: center; gap: 10px; min-height: 44px; }
.me-site .brand img { width: 38px; height: 21px; object-fit: contain; }
.me-site .brand b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1;
  letter-spacing: .1em;
  color: var(--ivory);
}
.me-site .brand span {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, .6);
  margin-top: 3px;
}

.me-site .nav { display: none; }
@media (min-width: 1000px) {
  .me-site .nav { display: flex; align-items: center; gap: 30px; }
  .me-site .nav a {
    position: relative;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(251, 247, 240, .88);
    transition: color .2s var(--ease);
  }
  .me-site .nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right .3s var(--ease);
  }
  .me-site .nav a:hover { color: var(--gold); }
  .me-site .nav a:hover::after { right: 0; }
}

.me-site .burger {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-right: -10px;
  cursor: pointer;
}
@media (min-width: 1000px) { .me-site .burger { display: none; } }
.me-site .burger i {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.me-site .burger i + i { margin-top: 5px; }
.me-site .burger.is-open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.me-site .burger.is-open i:nth-child(2) { opacity: 0; }
.me-site .burger.is-open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* full-screen menu overlay */
.me-site .menu {
  position: fixed;
  z-index: 39;
  inset: 0;
  display: grid;
  align-content: center;
  padding: var(--head-h) var(--gutter) 40px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.me-site .menu.is-open { opacity: 1; visibility: visible; }
.me-site .menu a {
  display: block;
  padding: 15px 0;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ivory);
  border-bottom: 1px solid rgba(251, 247, 240, .1);
}
.me-site .menu .menu__tel {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  border-bottom: 0;
}

/* ============================================================== 1. HERO */
.me-site .hero {
  position: relative;
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  background: #140C12;
  isolation: isolate;
}
.me-site .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease-fade);
}
.me-site .slide.is-live { opacity: 1; pointer-events: auto; }

.me-site .slide__media { position: absolute; inset: 0; overflow: hidden; }
.me-site .slide__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
}
/* Ken Burns runs for the slide's whole visible life: 4s hold + 1.2s fade out.
   Origin varies per slide so five in a row don't feel mechanical. */
.me-site .slide.is-live .slide__media img { animation: kb 5200ms linear both; }
.me-site .slide:nth-of-type(1) .slide__media img { transform-origin: 50% 55%; }
.me-site .slide:nth-of-type(2) .slide__media img { transform-origin: 50% 42%; }
.me-site .slide:nth-of-type(3) .slide__media img { transform-origin: 62% 50%; }
.me-site .slide:nth-of-type(4) .slide__media img { transform-origin: 48% 38%; }
.me-site .slide:nth-of-type(5) .slide__media img { transform-origin: 44% 58%; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.10); } }

.me-site .slide__veil {
  position: absolute;
  inset: 0;
  background:
    /* soft radial under the centred text block — slide 1's LED wall sits
       exactly there on a phone crop and swallows white type without it */
    radial-gradient(120% 56% at 50% 50%, rgba(20,12,18,.68) 0%, rgba(20,12,18,.5) 42%, rgba(20,12,18,.22) 74%, rgba(20,12,18,0) 100%),
    linear-gradient(180deg, rgba(20,12,18,.55) 0%, rgba(20,12,18,.22) 38%, rgba(20,12,18,.78) 100%),
    radial-gradient(120% 90% at 50% 45%, rgba(20,12,18,0) 40%, rgba(20,12,18,.42) 100%);
}
@media (min-width: 900px) {
  /* desktop sets the text hard left, so it gets its own soft scrim */
  .me-site .slide__veil {
    background:
      linear-gradient(180deg, rgba(20,12,18,.55) 0%, rgba(20,12,18,.22) 38%, rgba(20,12,18,.78) 100%),
      linear-gradient(90deg, rgba(20,12,18,.66) 0%, rgba(20,12,18,.3) 34%, rgba(20,12,18,0) 62%),
      radial-gradient(120% 90% at 50% 45%, rgba(20,12,18,0) 40%, rgba(20,12,18,.42) 100%);
  }
}

.me-site .slide__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.me-site .slide__text {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  text-align: center;
}
@media (min-width: 900px) { .me-site .slide__text { text-align: left; } }

.me-site .slide__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
@media (min-width: 768px) { .me-site .slide__eyebrow { font-size: 13px; } }

.me-site .slide h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7.4vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.me-site .slide h2 span { display: block; }

.me-site .slide__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(251, 247, 240, .88);
  max-width: 34ch;
  margin: 0 auto 30px;
}
@media (min-width: 900px) { .me-site .slide__sub { margin-inline: 0; font-size: 18px; } }

/* outlined CTA — Reference A's pill */
.me-site .slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 32px;
  border: 1px solid rgba(251, 247, 240, .85);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.me-site .slide__cta:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* per-slide staggered entrance: eyebrow → line 1 → line 2 → subtitle → CTA */
.me-site .slide__eyebrow,
.me-site .slide__sub,
.me-site .slide__cta,
.me-site .slide h2 span { opacity: 0; transform: translateY(24px); }
.me-site .slide.is-live .slide__eyebrow,
.me-site .slide.is-live .slide__sub,
.me-site .slide.is-live .slide__cta,
.me-site .slide.is-live h2 span { animation: rise 700ms var(--ease) both; }
.me-site .slide.is-live .slide__eyebrow      { animation-delay: 60ms; }
.me-site .slide.is-live h2 span:nth-child(1) { animation-delay: 180ms; }
.me-site .slide.is-live h2 span:nth-child(2) { animation-delay: 300ms; }
.me-site .slide.is-live .slide__sub          { animation-delay: 420ms; }
.me-site .slide.is-live .slide__cta          { animation-delay: 540ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* text leaves before the cross-fade begins */
.me-site .slide.is-exiting .slide__eyebrow,
.me-site .slide.is-exiting .slide__sub,
.me-site .slide.is-exiting .slide__cta,
.me-site .slide.is-exiting h2 span {
  animation: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 400ms var(--ease-fade), transform 400ms var(--ease-fade);
}

/* dashes + arrows */
.me-site .hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.me-site .hero__dots button {
  width: 30px; height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.me-site .hero__dots button::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: rgba(251, 247, 240, .45);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.me-site .hero__dots button[aria-current='true']::before { width: 26px; background: var(--gold); }
@media (min-width: 768px) { .me-site .hero__dots { bottom: 30px; } }

.me-site .hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: none;
  place-items: center;
  width: 48px; height: 68px;
  margin-top: -34px;
  background: rgba(20, 12, 18, .3);
  color: var(--ivory);
  cursor: pointer;
  transition: background-color .3s var(--ease);
}
.me-site .hero__arrow:hover { background: rgba(20, 12, 18, .62); }
.me-site .hero__arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.me-site .hero__arrow--prev { left: 0; }
.me-site .hero__arrow--next { right: 0; }
@media (min-width: 900px) { .me-site .hero__arrow { display: grid; } }

/* ============================================================= 2. ABOUT */
.me-site .about__grid { display: grid; gap: 34px; }
@media (min-width: 900px) {
  .me-site .about__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 64px; align-items: center; }
}
.me-site .framed { padding: 10px; border: 1px solid var(--sandstone); background: #fff; border-radius: 4px; }
.me-site .framed .ph { aspect-ratio: 4 / 3; border-radius: 2px; }
.me-site .framed figcaption { padding-top: 10px; font-size: 13px; color: var(--sage); text-align: center; }
.me-site .about p + p { margin-top: 1em; }

.me-site .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--sandstone);
}
.me-site .stats b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--fern);
}
@media (min-width: 768px) { .me-site .stats b { font-size: 34px; } }
.me-site .stats span {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
}
.me-site .stats .star { fill: var(--gold); vertical-align: -.04em; }
.me-site .stats a b { transition: color .2s var(--ease); }
.me-site .stats a:hover b { color: var(--gold-deep); }

/* ========================================================== 3. SERVICES */
.me-site .cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px)  { .me-site .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .me-site .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.me-site .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sandstone);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.me-site .card:hover { transform: translateY(-3px); border-color: var(--gold); }
.me-site .card .ph { aspect-ratio: 4 / 3; }
.me-site .card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.me-site .card__body p { color: var(--sage); font-size: 15px; flex: 1; }
@media (min-width: 768px) {
  .me-site .card__body { padding: 22px; }
  .me-site .card__body p { font-size: 15px; }
}
.me-site .card .golink { margin-top: 4px; }
.me-site .card .ph > img { transition: opacity .5s ease, transform .5s var(--ease); }
.me-site .card:hover .ph > img.is-in { transform: scale(1.04); }

/* ========================================================== 4. OUR WORK */
.me-site .filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.me-site .filters button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(251, 247, 240, .3);
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(251, 247, 240, .85);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.me-site .filters button:hover { border-color: var(--gold); color: var(--gold); }
.me-site .filters button[aria-pressed='true'] { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.me-site .work { display: grid; align-items: start; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px)  { .me-site .work { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .me-site .work { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.me-site .shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--slate);
}
.me-site .shot[hidden] { display: none; }
.me-site .shot figure { display: block; }
.me-site .shot .ph { aspect-ratio: 4 / 3; }
.me-site .shot--tall .ph { aspect-ratio: 3 / 4; }
.me-site .shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(20,12,18,.9), rgba(20,12,18,0));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory);
  text-align: left;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.me-site .shot:hover figcaption,
.me-site .shot:focus-visible figcaption { opacity: 1; }
@media (hover: none) { .me-site .shot figcaption { opacity: 1; } }
.me-site .shot .ph > img { transition: opacity .5s ease, transform .5s var(--ease); }
.me-site .shot:hover .ph > img.is-in { transform: scale(1.04); }
.me-site .work__more { margin-top: 32px; text-align: center; }

/* ======================================================== 5. WHY CHOOSE */
.me-site .why__grid { display: grid; gap: 34px; }
@media (min-width: 900px) {
  .me-site .why__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 60px; align-items: center; }
}
.me-site .why .ph { aspect-ratio: 3 / 4; border-radius: 4px; }
.me-site .why__points { display: grid; gap: 26px; margin-top: 28px; }
@media (min-width: 620px) { .me-site .why__points { grid-template-columns: 1fr 1fr; gap: 28px 36px; } }
.me-site .why__points h3 { margin: 10px 0 8px; }
.me-site .why__points p { color: var(--sage); font-size: 15px; }
.me-site .why__points .eyebrow::before { width: 5px; height: 5px; }

/* =========================================================== 6. REVIEWS */
.me-site .revs { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px)  { .me-site .revs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .me-site .revs { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.me-site .rev {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--sandstone);
  border-radius: 4px;
}
.me-site .rev__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.me-site .rev__stars { display: flex; gap: 2px; }
.me-site .rev__stars svg { fill: var(--gold); }
.me-site .rev__src { font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--sage); }
.me-site .rev p { font-size: 15px; line-height: 1.6; color: var(--fern); flex: 1; }
.me-site .rev cite { display: flex; align-items: center; gap: 10px; font-style: normal; }
.me-site .rev__ava {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.me-site .rev cite b { font-weight: 600; font-size: 15px; }
.me-site .revs__foot { margin-top: 30px; text-align: center; }

/* ======================================================= 7. EXHIBITIONS */
.me-site .exh__grid { display: grid; gap: 30px; }
@media (min-width: 900px) {
  .me-site .exh__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 60px; align-items: center; }
}
.me-site .exh .ph { aspect-ratio: 4 / 3; border-radius: 4px; }
.me-site .exh p + p { margin-top: .9em; }
.me-site .exh .pill { margin-top: 22px; }

/* ========================================================== 8. LOCATION */
.me-site .loc__grid { display: grid; gap: 30px; }
@media (min-width: 900px) {
  .me-site .loc__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 56px; align-items: center; }
}
.me-site .loc dl { display: grid; gap: 20px; margin-top: 26px; }
.me-site .loc dt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.me-site .loc dd { font-size: 15px; line-height: 1.6; color: var(--fern); max-width: 40ch; }
.me-site .loc dd a {
  display: inline-block;
  min-height: 44px;
  padding-block: 10px;
  border-bottom: 1px solid var(--sandstone);
  transition: border-color .2s var(--ease);
}
.me-site .loc dd a:hover { border-color: var(--gold); }
.me-site .map {
  border: 1px solid var(--sandstone);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sandstone);
}
.me-site .map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* =========================================================== 9. CONTACT */
.me-site .form-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 22px;
  background: var(--slate);
  border: 1px solid rgba(251, 247, 240, .14);
  border-radius: 6px;
}
@media (min-width: 768px) { .me-site .form-card { padding: 32px; } }
.me-site .f { margin-bottom: 16px; }
.me-site .f label {
  display: block;
  margin-bottom: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(251, 247, 240, .85);
}
.me-site .f input,
.me-site .f select,
.me-site .f textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  background: var(--ink);
  border: 1px solid rgba(251, 247, 240, .2);
  border-radius: 4px;
  font-size: 16px;               /* 16px keeps iOS from zooming the page on focus */
  color: var(--ivory);
  transition: border-color .2s var(--ease);
}
.me-site .f textarea { min-height: 92px; resize: vertical; }
.me-site .f select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(251,247,240,.6) 50%),
                    linear-gradient(135deg, rgba(251,247,240,.6) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.me-site .f select option { background: var(--ink); color: var(--ivory); }
.me-site .f input::placeholder, .me-site .f textarea::placeholder { color: rgba(251, 247, 240, .38); }
.me-site .f input:focus, .me-site .f select:focus, .me-site .f textarea:focus { outline: none; border-color: var(--gold); }
.me-site .f.is-bad input, .me-site .f.is-bad select { border-color: #E2708F; }
.me-site .f .err { display: block; margin-top: 6px; font-size: 13px; line-height: 1.4; color: #F0A6BB; }
.me-site .f-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .me-site .f-row { grid-template-columns: 1fr 1fr; } }
.me-site .form-actions { margin-top: 20px; }
.me-site .form-actions .pill { width: 100%; }
.me-site .form-note { margin-top: 14px; font-size: 14px; color: rgba(251, 247, 240, .6); }
.me-site .form-note a { color: var(--gold); }

/* =========================================================== 10. FOOTER */
.me-site .foot { background: var(--ink); color: var(--ivory); padding-top: 56px; }
.me-site .foot__grid { display: grid; gap: 34px; }
@media (min-width: 700px) { .me-site .foot__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; } }
.me-site .foot h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.me-site .foot h3::before { content: ''; width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); }
.me-site .foot li a { display: inline-block; min-height: 44px; padding-block: 11px; }
.me-site .foot li + li { margin-top: 0; }
.me-site .foot__reach li { padding-block: 6px; }
@media (min-width: 700px) {
  .me-site .foot li a { min-height: 0; padding-block: 5px; }
  .me-site .foot li + li { margin-top: 3px; }
}
.me-site .foot li a, .me-site .foot__reach span {
  font-size: 15px;
  color: rgba(251, 247, 240, .78);
  transition: color .2s var(--ease);
}
.me-site .foot li a:hover { color: var(--gold); }
.me-site .foot__brand img { width: 52px; height: 29px; object-fit: contain; margin-bottom: 14px; }
.me-site .foot__brand p { font-size: 15px; color: rgba(251, 247, 240, .62); max-width: 30ch; }
.me-site .foot__reach li { display: flex; gap: 10px; align-items: flex-start; }
.me-site .foot__reach svg { flex: none; width: 16px; height: 16px; margin-top: 3px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.me-site .foot__bar {
  margin-top: 46px;
  /* the WhatsApp bubble occupies the bottom-right 24+58px of the viewport, so
     the last line of the footer is kept clear of it */
  padding: 18px 0 calc(96px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(251, 247, 240, .12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  font-size: 12.5px;
  color: rgba(251, 247, 240, .55);
  text-align: center;
}
@media (min-width: 700px) { .me-site .foot__bar { justify-content: space-between; } }
.me-site .foot__bar i { display: block; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
@media (min-width: 700px) { .me-site .foot__bar i { display: none; } }

/* ============================================ FLOATING WHATSAPP BUBBLE */
.me-site .wa-fab {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
  transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
}
@media (min-width: 768px) { .me-site .wa-fab { width: 58px; height: 58px; } }
.me-site .wa-fab:hover { transform: scale(1.06); }
.me-site .wa-fab svg { position: relative; z-index: 1; width: 27px; height: 27px; fill: currentColor; }
@media (min-width: 768px) { .me-site .wa-fab svg { width: 30px; height: 30px; } }
/* one soft gold ring, every 6s */
.me-site .wa-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: ring 6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes ring {
  0%   { transform: scale(1);    opacity: .55; }
  14%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.me-site.is-locked .wa-fab { opacity: 0; visibility: hidden; pointer-events: none; }

/* ================================================ PLAN YOUR EVENT SHEET */
.me-site .sheet { position: fixed; z-index: 60; inset: 0; display: none; }
.me-site .sheet.is-open { display: block; }
.me-site .sheet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 18, .7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.me-site .sheet.is-in .sheet__scrim { opacity: 1; }
.me-site .sheet__card {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 92svh;
  overflow-y: auto;
  padding: 22px 20px calc(24px + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid rgba(200, 149, 46, .4);
  border-radius: 12px 12px 0 0;
  transform: translateY(100%);
  transition: transform .34s var(--ease);
}
.me-site .sheet.is-in .sheet__card { transform: none; }
@media (min-width: 640px) {
  .me-site .sheet__card {
    top: 50%; left: 50%; right: auto; bottom: auto;
    width: min(420px, calc(100vw - 40px));
    padding: 28px;
    border: 1px solid rgba(200, 149, 46, .4);
    border-radius: 8px;
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .me-site .sheet.is-in .sheet__card { transform: translate(-50%, -50%); opacity: 1; }
}
.me-site .sheet__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.me-site .sheet__head h2 { font-size: 24px; color: var(--ivory); }
.me-site .sheet__head p { margin-top: 6px; font-size: 15px; color: rgba(251, 247, 240, .65); }
.me-site .sheet__x {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin: -10px -10px 0 0;
  color: rgba(251, 247, 240, .8);
  cursor: pointer;
}
.me-site .sheet__x svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; }
.me-site .sheet__x:hover { color: var(--ivory); }
.me-site .sheet .pill { width: 100%; margin-top: 6px; }

/* ============================================================= LIGHTBOX */
.me-site .lb { position: fixed; z-index: 70; inset: 0; display: none; background: rgba(20, 12, 18, .97); }
.me-site .lb[hidden] { display: none; }
.me-site .lb.is-open { display: grid; grid-template-rows: 1fr auto; }
.me-site .lb__stage { position: relative; display: grid; place-items: center; padding: 56px 12px 8px; min-height: 0; }
.me-site .lb__img { max-width: min(100%, 1280px); max-height: 82svh; width: auto; height: auto; object-fit: contain; }
.me-site .lb__img.is-entering { animation: lbin .42s var(--ease) both; }
@keyframes lbin { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.me-site .lb__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  color: var(--ivory);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.me-site .lb__btn:hover { color: var(--gold); }
.me-site .lb__btn svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.me-site .lb__prev { left: 4px; top: 50%; transform: translateY(-50%); }
.me-site .lb__next { right: 4px; top: 50%; transform: translateY(-50%); }
.me-site .lb__close { right: 8px; top: 8px; }
@media (min-width: 768px) {
  .me-site .lb__prev { left: 22px; }
  .me-site .lb__next { right: 22px; }
  .me-site .lb__close { right: 20px; top: 16px; }
}
.me-site .lb__foot { padding: 12px 14px calc(16px + env(safe-area-inset-bottom)); text-align: center; }
.me-site .lb__count { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--gold); }
.me-site .lb__cap { display: block; margin-top: 6px; font-size: 13px; color: rgba(251, 247, 240, .7); }
.me-site .lb__rail { display: none; }
@media (min-width: 900px) {
  .me-site .lb__rail { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
  .me-site .lb__rail button {
    width: 50px; height: 32px; padding: 0; cursor: pointer; opacity: .4;
    border: 1px solid transparent; border-radius: 2px; overflow: hidden;
    transition: opacity .2s var(--ease), border-color .2s var(--ease);
  }
  .me-site .lb__rail button img { width: 100%; height: 100%; object-fit: cover; }
  .me-site .lb__rail button:hover { opacity: .75; }
  .me-site .lb__rail button[aria-current='true'] { opacity: 1; border-color: var(--gold); }
}

/* =============================================================== MOTION */
.me-site [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.me-site [data-reveal].is-in { opacity: 1; transform: none; }
.me-site.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .me-site *, .me-site *::before, .me-site *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .me-site [data-reveal] { opacity: 1; transform: none; }
  .me-site .ph > img { opacity: 1; }
  .me-site .slide__eyebrow, .me-site .slide__sub,
  .me-site .slide__cta, .me-site .slide h2 span { opacity: 1; transform: none; }
  .me-site .hero__arrow { display: grid; }
}

@media print {
  .me-site .wa-fab, .me-site .lb, .me-site .sheet, .me-site .head, .me-site .menu { display: none !important; }
}

/* --------------------------------------------------- LQIP PLACEHOLDERS
   20px blurred previews, inlined so they arrive with the stylesheet. */
.me-site .ph--stage { background-image: url(data:image/webp;base64,UklGRnwAAABXRUJQVlA4IHAAAADwAwCdASoUAAsAPulgqE0pJaQiMAgBIB0JagCdMoACqEIe3N2LHtgAAP7sW3Gw0aW3upLotqjzmhPNoaP8Unc+BBFeZzkve3q5pnfv9CX+ikHT2sxCPbA7k9wymf/ZySYf//s5I4AFDlwXZPkgONAA); }
.me-site .ph--tunnel { background-image: url(data:image/webp;base64,UklGRmoAAABXRUJQVlA4IF4AAADQAwCdASoUAA8APuleqE0pJSQiMAgBIB0JYwC/OBEVFUTcE/ZF4AAA2xpxatllTP5Sguvz5+zh2fAo/uThDNFA/AEUQb8TQdT+TNHhbetKNDU3/aMI7j1aurJ6AAAA); }
.me-site .ph--corridor { background-image: url(data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAADwAwCdASoUAA0APulgqU2pJaQiMAgBIB0JbACdMoR3ABOfwg14wSQAAM4XmQ1P8EBFV4KXLAVgv1UJ8HKn2axGypF8q422FX12q8jtxct5KQafOSUEwhPqwL/Z0UywajCRS89DfAA=); }
.me-site .ph--passage { background-image: url(data:image/webp;base64,UklGRnwAAABXRUJQVlA4IHAAAABwBACdASoUAAsAPulgqE0pJaOiMAgBIB0JbACdMoRwAB0Nl8za7yt7diBpAAD8Ln0/bCnNgggEEXFpOTL5uJxjdwUsBxqS/pn8MWmm9nnMRPPIYFBV/NHqVnqKfn0zxSVFgCn4CuVOqA+503uuAAAA); }
.me-site .ph--banquet { background-image: url(data:image/webp;base64,UklGRn4AAABXRUJQVlA4IHIAAADQAwCdASoUAA8APuleqE0pJSOiMAgBIB0JQBOgAodd1F2HHb1qO0AA/uzba5+KxTMnAaM24L52G8Y9MpNiuqXT9UQMZt4rg/bWvgvLksRPf3LP0yZpijbCee6b9thTtCAtfyuhGYZvXPTTNWn0owJ7QAA=); }
.me-site .ph--mainstage { background-image: url(data:image/webp;base64,UklGRowAAABXRUJQVlA4IIAAAAAQBQCdASoUAA8APuleqE0pJSQiMAgBIB0JaACdMoR3Ir/S/4DyJsh28L7+kJidbZAAAP7pl5vyQUwmLmK0Kvh3ORVithD8CqCm9kmCTDqK26sB0v2nIlnjht62JeQjOxu8AhoNTkP4UIzVRvMW5klzDBM/HctZveoLPEyk/ksAAA==); }
.me-site .ph--carnival { background-image: url(data:image/webp;base64,UklGRm4AAABXRUJQVlA4IGIAAADwAwCdASoUAAsAPulgqE2pJaOiMAgBIB0JaACdMoADUpcdXmO5Vel2APfa5/r6yOzn3VHtzhdfgv2J/d76ODjJ7Q16Nn5dOUmhr8u5HX67Fto4JNt/10QbLnUbeWgD8oAAAA==); }
.me-site .ph--rockstar { background-image: url(data:image/webp;base64,UklGRoIAAABXRUJQVlA4IHYAAABQBACdASoUAAsAPuleqE0pJSOiMAgBIB0JbACdMoRgC3AA9B8ahLpUbNgAAMonMhusftccbke8u7GbGpUWxozvoByJyUgIZQrMn5JZe2F7edOERwekYdKqPq/vR1PyjXA2IVsIj6S8xgZZ7QQjSkI8ufX0AAAA); }
.me-site .ph--lights-camera { background-image: url(data:image/webp;base64,UklGRoIAAABXRUJQVlA4IHYAAADwAwCdASoUAAsAPulgp00pJaOiMAgBIB0JbACdLwABYgW3jW4SO5EMAP35t7XZucuz2rUrKLs2aFWQYUxYaJTjGHHuA0DOK/drmm2aIYufBmlqWXTsc5HLdJ+rw6KhwQzyocpNyueK4CgsLIPF3Lr8O1hAAAAA); }
.me-site .ph--carriage { background-image: url(data:image/webp;base64,UklGRqwAAABXRUJQVlA4IKAAAABQBQCdASoUABsAPulqrVGpJaQiqAgBIB0JZACdL3+Al0QWmyhp4Rp8jtXAvTFSteN6UgAA1MSi+mmf0UGNtW/zAgocy8ag0rmcoY7SjVyG6SGFH1J78yw1zZVHRSOUdEMZbZBVju83HFTsRo+QUyQKwg2w8s1DFj990kTEsG2yvWdfCoyUfOQAWAsc92Np+dvuDUpB/O90oq/9cVNjXKAA); }
.me-site .ph--exhibition { background-image: url(data:image/webp;base64,UklGRsIAAABXRUJQVlA4ILYAAAAwBQCdASoUABsAPuloq1ApJaOiqAqpIB0JYgCxHw6J4uK2r6YO07mxe6rQa53sN7f6AAD7Dfn1iICk8dMgbH/t2TEiRroK0oZzWvfQ9jo+qfaYesirECd48aduOkFWGT4qSe0B4sXfJfi/BZLd+SjNra+Hkz6aR1LI5FxP2kCUDVQwxs8lPQRiJ7Zilaq4NEsqkAoUk4ynAc7De5jJfmDXEtSadXyhqhBzDQg+STJr8UvFQAAAAA==); }
.me-site .ph--school { background-image: url(data:image/webp;base64,UklGRoQAAABXRUJQVlA4IHgAAAAwBACdASoUAA8APulep00pJSOiMAgBIB0JZgCdMoADMeuITdrMarpnUsAAyx+hXNdTnZwcgcnKaqFzA6mxx8yteQ3pU0uIPI5Mt5MVn8ybFqrBZR3bqqSl/HhUzoo3Oc7qthUcj54vELrm+ZDMwWcVkWJPzsy7YAA=); }
.me-site .ph--dolphin { background-image: url(data:image/webp;base64,UklGRnoAAABXRUJQVlA4IG4AAADQAwCdASoUAA8APuleqE0pJSQiMAgBIB0JQBOkBsgurJOQDOCTyYAAzP54xYUxtM1b+4MOD2e09Yu7dGohRAzAFClf0JltYTDUItdXf01Wuptsagg+SHPr1SMlJ/xMphLzxHc8WEt3bruRTdHgAA==); }
.me-site .ph--felicitation { background-image: url(data:image/webp;base64,UklGRuwAAABXRUJQVlA4IOAAAACwBgCdASoUACQAPulssVGpJaSipWmZIB0JYgCsM2J73EVoOdzl2t3WVt33g6jpWgOnK9L4hMIcB0AutiJLVAD+y/emojZsgYB7EFD7t9KZvEAezlVt30I7BraKBzzjS1rQpoU+EJJ9B4QDWKFX75q3gKB4FrlVhhK2NiyVE+j9RWIloA2zFIPBE55f8cMrHdSLbld/mOaJFUwfEUyo/Z/Aiwv0dshrWCJGbg99CwlkE3acIu5BeJ03XlqdiP/VlNj0Q6yWY6+PobKF6ZHuJd5FcRmeml9cfaWjbQ/cmAAAAA==); }
.me-site .ph--mandap { background-image: url(data:image/webp;base64,UklGRmoAAABXRUJQVlA4IF4AAACwAwCdASoUAA0APuleqE0pJSQiMAgBIB0JZACw7CEpL4HCPvdY0AD+2tJNfZA5NBm+ve2EkkuFFZ41Wu0LJ1NUvObmXJ6L7Ga3S5trcjEqQ2evMKibpq59qXX5nBIA); }
.me-site .ph--exhibition-warm { background-image: url(data:image/webp;base64,UklGRo4AAABXRUJQVlA4IIIAAADwAwCdASoUABAAPuleqE0pJSQiMAgBIB0JYgCdACIF8gsIa8H+BKEAAPWdpYiPcc3mdWOgleOZTXab/6Dv4FqshvcyyViwvPNoOFHEhZ1Mg2yPhc3H/ccUyRBYjObAX3sJNOv5FiQSJUnq5KWgROUdtfwshrp4dVb4zzsTAnl/rQAA); }
.me-site .ph--slide1 { background-image: url(data:image/webp;base64,UklGRnYAAABXRUJQVlA4IGoAAADwAwCdASoUAAsAPulgqE0pJaOiMAgBIB0JQBOmUABWF81Qhtl6VNVQAP68V5SnEy3UsFYgaxByLmAGjjmMBb8AK1ZCwiAtfbvq8pePKGq09FEigxUfGKBpMeopwkysBxIVBhBJsGN0KAAA); }
.me-site .ph--slide1m { background-image: url(data:image/webp;base64,UklGRvYAAABXRUJQVlA4IOoAAACwBgCdASoUACQAPulsrFApJiQiqqgBIB0JQBYj+Fgw2748AUOWlfGSGylfXt3L6DQpmqYROXKxL+0fZxEqSAD+R9Pcgz3x/Xl1a2mMdPVuYtEeJtQlmHbD5Mu5xPvOt1g4n5U9Si3VKeVzhzvY+/4KYRzyAhASjBFsjSTpRAKSqGMXcU80egKF+x6MGVfo+okV+cNaMtykm5DoSqs4zjXXhVSS31XRy5SsDMceFh2hHMi4+oLfhR349b7uMQldqA9KMwgJcVKUONbXIjcdOtT3J6kSx920gX0wSVkQf8wutOCtPX04qyuOAAA=); }
.me-site .ph--slide2 { background-image: url(data:image/webp;base64,UklGRnQAAABXRUJQVlA4IGgAAAAwBACdASoUAAsAPulgqU2pJaQiMAgBIB0JbACdMoRwACquptQQ0s2nZ3AA/gJ2TXZl39ax2r3UxGpAxWvsbpGaTua6iEdlCWkxdaFnYK25UJsHZinzvPfp9x4AoUwh6CAVtduhYAAAAA==); }
.me-site .ph--slide2m { background-image: url(data:image/webp;base64,UklGRsoAAABXRUJQVlA4IL4AAAAQBQCdASoUACQAPuleqU6pJKOiMBqoASAdCWIAgsKv+zQATxoNY/1qEfkCxkzYzKugAP6MYBc8WjZ60ZFpZtlwHOiWE+s2pnv0SW+DzgyLDa8/719uGv+q9Q5G7KOgHCH8IYbkLTAwaAcQmMWSBJjaNDzZsWE3VQkpQiKlBTnRjwHLy+rJoN+RUDcxYPOkpS/FAXE9RvjgruQqEQrfY1nK2GgAKMYV9NFFWJso8Nhv/2zPAIg1N53WqotQPMAA); }
.me-site .ph--slide3 { background-image: url(data:image/webp;base64,UklGRnYAAABXRUJQVlA4IGoAAABwBACdASoUAAsAPulgqE0pJaOiMAgBIB0JbACdMoRwACHkvAY4OPhIjw+4AADrXbqcG0zdk7K0sT7I/2L0+enfJVzmdfxNputLIUTmVSjjEP1cUHVCD1Ao4EtQZUs4DIOau+kXXUVDAAAA); }
.me-site .ph--slide3m { background-image: url(data:image/webp;base64,UklGRiYBAABXRUJQVlA4IBoBAAAQCACdASoUACQAPulqrFApJiQiqqgBIB0JbACdMoR6sNRzouD+reLAHIWEV/bt7n4SdF757agyq0aybf3ZNd6r34WxTYwBOB/gAPkorBqMNwGoAQ7hzYS9JaUyor49w2Q59uoM2WaZfHOq5ISanhw1gOt4suP2gzWOsev9zGzIAoodDnXSnpmvPqedHvezwm5BN9nHBMlD+BQdCd/6wRngFCUkPTYgDKoVeFAfTuXkKNAZW33GnCnSbwmHmsK1hBqBV+Hv+v+fD1HuldPe1g+sBLt/HDnhuT46qMdQa0qoR/UiOoQ/LGBzN+/1mFTgbevLPS/Ir+YrwvL+XPAOyP3YdGPakPj/JD/Nl6KQE5e6+H2NU8goODuMoAA=); }
.me-site .ph--slide4 { background-image: url(data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAADwAwCdASoUAAsAPulgqE0pJaQiMAgBIB0JaACdAB9S/PSPknD0u5fAAPvwQ3VAZcQeZK0/3vEQJ+SLzaLr/EoMrOyMc5puTMBqXt58SxPs2r6MAeCpnTlMe92Y3D02iac4JOhwuAA=); }
.me-site .ph--slide4m { background-image: url(data:image/webp;base64,UklGRrQAAABXRUJQVlA4IKgAAADwBQCdASoUACQAPulorFApJaQipWzJIB0JZACw7DZVGyX+oPHW1g4iS4BkF7N/1ZiW+ty5YdZm6AD+5ewv+S4yVoWctrpzI4quh1Pos6B4xUh7g0WUyoF+YWtEiBkAxbttDMFB5uFz0DuVOOIeEb+l8ydf82n288ERDqqhnP4u6PO9NEehcyDZeWV8nzfooZPtdnarRwayb5NUT9I3q9a7liV3tADpgAA=); }
.me-site .ph--slide5 { background-image: url(data:image/webp;base64,UklGRnoAAABXRUJQVlA4IG4AAADwAwCdASoUAAsAPulgqE0pJaOiMAgBIB0JagCdMoAC/red4dPB2MKAAP7vZIsoGGQpccvVQyIoRZ/BOWBNgMRxBPRObaXGNZTF/QXUpb9yx8+6knwI68/M3rbBSJzeJo1MXnG4DOpcv4jQEAAAAA==); }
.me-site .ph--slide5m { background-image: url(data:image/webp;base64,UklGRiwBAABXRUJQVlA4ICABAABwBwCdASoUACQAPulwrFEpJqQiqrgIASAdCWwAnS/nyHYq+Ce2kgH2f5nhtAqMoPOaDHZcrXPfMxt7DqPTXRsNuQ1I4AD+6fwxpxNPz71o6h1rSZPwYv7yPUNDuaJ5T9I5eI9zPKPXG+NPZmLkCeQh3MCNWq2Dv9uwJwz2sV41XFzSBF204PSn4YTr/k3q9fUkivKut4iv8oMF4N5wTTpnDAu/b2P9tVFmwbBFN97vqzw3+M93j+GBNLmxrzihbuNsNjor3kvoa6HQW+qn9sJfEDRa6/PqaTBeKv4hBMdvlWUdrZoebAB+vz97HD/Q2jTsvf9Cvta8dPT9aalUFjyIZ+03CnVX0V2E1D9iri0yIdIPixJhOFjG+hSTiVfV4AA=); }
