/* =====================================================================
   Aanya & Devan — Wedding site styles
   Mobile-first. Plain CSS, no frameworks.
   Built on a strict spacing + type scale for consistent rhythm.
   ===================================================================== */

/* ---------- Custom properties ---------- */
:root {
  /* Colour palette */
  --cream:      #FAF7F2;
  --cream-deep: #F3EDE3;   /* slightly deeper cream for alternating bands */
  --white:      #FFFFFF;
  --sage:       #8A9E85;
  --sage-dark:  #6E8268;
  --sage-soft:  #E8EDE5;   /* tint for chips / fills */
  --charcoal:   #3D3732;
  --taupe:      #9C8E84;
  --taupe-soft: #D8CFC5;   /* hairline borders */
  --terracotta: #C4A882;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (8px base) — every gap/padding picks from here */
  --s-1: 0.5rem;    /* 8  */
  --s-2: 1rem;      /* 16 */
  --s-3: 1.5rem;    /* 24 */
  --s-4: 2rem;      /* 32 */
  --s-5: 3rem;      /* 48 */
  --s-6: 4rem;      /* 64 */
  --s-7: 5rem;      /* 80 */
  --s-8: 7.5rem;    /* 120 */

  /* Layout */
  --container: 900px;
  --gutter: var(--s-3);
  --radius: 4px;          /* restrained, not pill-rounded */
  --radius-lg: 8px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --section-y: var(--s-7);  /* vertical section padding (desktop) */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.005em;
}

p { margin: 0; }
a { color: inherit; }

/* Region filtering sets el.hidden = true. This guarantees that wins over any
   class-level display:flex/grid (otherwise hidden elements stay visible). */
[hidden] { display: none !important; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Shared eyebrow / overline treatment — one definition, used everywhere */
.eyebrow,
.gate__eyebrow,
.hero__eyebrow,
.section__eyebrow,
.countdown__overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--sage);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.05em 2.6em;
  cursor: pointer;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn--ghost {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

:focus-visible { outline: 2px solid var(--sage-dark); outline-offset: 3px; }

/* =====================================================================
   PASSWORD GATE
   ===================================================================== */
.gate {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--s-6) var(--gutter);
  background:
    radial-gradient(140% 100% at 50% -10%, var(--white) 0%, var(--cream) 55%, var(--cream-deep) 100%);
  overflow: hidden;
}
.gate__inner {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  width: 100%;
  animation: fade-up 1s var(--ease) both;
}
.gate__eyebrow { display: block; margin-bottom: var(--s-3); }
.gate__names {
  font-size: clamp(3rem, 12vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
}
.gate__names .amp {
  display: block;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  margin: 0.15em 0;
}
.gate__rule {
  width: 48px; height: 1px;
  background: var(--terracotta);
  margin: var(--s-4) auto;
  border: 0;
}
.gate__prompt {
  color: var(--taupe);
  margin-bottom: var(--s-4);
  font-size: 0.98rem;
}
.gate__form {
  display: grid;
  gap: var(--s-2);
}
.gate__input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: 1.1em 1.2em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.gate__input::placeholder { color: var(--taupe); letter-spacing: 0.2em; opacity: .65; }
.gate__input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.gate__error {
  color: #A6584A;
  font-size: 0.86rem;
  margin-top: var(--s-2);
  animation: fade-up .35s var(--ease) both;
}
.gate__leaf {
  position: absolute;
  bottom: -20px; right: -20px;
  width: clamp(120px, 26vw, 220px);
  color: var(--sage);
  opacity: 0.22;
  z-index: 1;
}
.gate__leaf--left {
  right: auto; left: -20px; top: -20px; bottom: auto;
  transform: scaleY(-1) rotate(12deg);
  opacity: 0.16;
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-2) var(--gutter);
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--taupe-soft);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: var(--s-4);
}
.nav__links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.nav__links a:hover { color: var(--sage-dark); border-color: var(--sage); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--charcoal);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* =====================================================================
   SECTION SYSTEM — consistent vertical rhythm everywhere
   ===================================================================== */
.section {
  padding: var(--section-y) var(--gutter);
}
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section--alt { background: var(--cream-deep); }

/* Header block shared by every section: eyebrow → title → lead */
.section__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto var(--s-6);
}
.section__eyebrow { display: block; margin-bottom: var(--s-2); }
.section__title {
  font-size: clamp(2.1rem, 6vw, 3.1rem);
  font-weight: 500;
}
.section__title-rule {
  width: 48px; height: 1px; background: var(--terracotta);
  border: 0; margin: var(--s-3) auto 0;
}
.section__lead {
  color: var(--taupe);
  margin-top: var(--s-3);
  font-size: 1.02rem;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 94vh;
  min-height: 94svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--s-7) var(--gutter);
  background:
    radial-gradient(130% 90% at 50% 0%, var(--white) 0%, var(--cream) 60%);
}
.hero__inner {
  display: grid;
  justify-items: center;
  gap: 0;
  max-width: 46rem;
}
.hero__deco { color: var(--sage); opacity: .55; width: min(320px, 64vw); margin-bottom: var(--s-4); }
.hero__vine { width: 100%; height: auto; }
.hero__eyebrow { margin-bottom: var(--s-4); color: var(--taupe); }
.hero__names {
  display: grid;
  justify-items: center;
  font-size: clamp(3.6rem, 17vw, 7.5rem);
  line-height: 0.92;
  font-weight: 500;
}
.hero__amp {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  margin: 0.08em 0;
}
.hero__date {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 3.6vw, 1.6rem);
  color: var(--charcoal);
  margin-top: var(--s-5);
}
.hero__sub {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: var(--s-2);
}
.hero__cta { margin-top: var(--s-6); }

/* =====================================================================
   COUNTDOWN
   ===================================================================== */
.countdown { text-align: center; }
.countdown__overline { display: block; margin-bottom: var(--s-4); }
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  max-width: 34rem;
  margin: 0 auto;
}
.countdown__box {
  background: var(--white);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-1);
}
.section--alt .countdown__box { background: var(--cream); }
.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  color: var(--sage-dark);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  margin-top: var(--s-1);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* =====================================================================
   EVENTS  — even grid, equal-height cards
   ===================================================================== */
.events {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--taupe-soft);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: var(--s-4);
}
.section--alt .event-card { background: var(--cream); }
.chip {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border-radius: 2px;
  padding: 0.4em 0.9em;
  margin-bottom: var(--s-3);
}
.event-card__name { font-size: 1.65rem; margin-bottom: var(--s-2); }
.event-card__meta {
  display: grid;
  gap: 0.2rem;
  margin-bottom: var(--s-2);
}
.event-card__when { color: var(--charcoal); font-weight: 400; }
.event-card__where { color: var(--taupe); font-size: 0.95rem; }
.event-card__note { color: var(--taupe); font-size: 0.95rem; margin-top: auto; }

/* =====================================================================
   RSVP FORM — aligned two-column grid
   ===================================================================== */
.rsvp {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  max-width: 40rem;
  margin: 0 auto;
}
.field { display: grid; gap: var(--s-1); }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: 0.9em 1em;
  width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.section--alt .field input,
.section--alt .field select,
.section--alt .field textarea { background: var(--cream); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #B5675A; }

/* Event picker (checkbox group) */
.eventpick {
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: var(--s-3);
  margin: 0;
  display: grid;
  gap: var(--s-1);
}
.section--alt .eventpick { background: var(--cream); }
.eventpick legend {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0 0.4em;
}
.eventpick__option {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.55em 0.4em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .2s var(--ease);
}
.eventpick__option:hover { background: var(--sage-soft); }
.eventpick__option input {
  width: 1.05rem; height: 1.05rem;
  accent-color: var(--sage);
  flex: none;
  cursor: pointer;
}
.eventpick__option span { font-size: 0.98rem; color: var(--charcoal); }
.eventpick__option small {
  color: var(--taupe);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.eventpick[aria-invalid="true"] { border-color: #B5675A; }

.rsvp__actions { justify-items: center; margin-top: var(--s-1); }
.rsvp__feedback {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.05rem;
  padding: var(--s-3);
  border-radius: var(--radius);
}
.rsvp__feedback--ok  { color: var(--sage-dark); background: var(--sage-soft); }
.rsvp__feedback--err { color: #A6584A; background: color-mix(in srgb, #A6584A 9%, transparent); }

/* =====================================================================
   VENUE — 2x2 compact grid, each card stacks details over a small map
   ===================================================================== */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.venue {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.section--alt .venue { background: var(--cream); }
.venue__details { padding: var(--s-4); flex: 1; }
.venue__name { font-size: 1.4rem; margin: var(--s-1) 0; }
.venue__details p { color: var(--taupe); font-size: 0.95rem; }
.venue__details p + p { margin-top: 0.2rem; }
.venue__note { margin-top: var(--s-2) !important; font-size: 0.9rem; }
.venue__map {
  overflow: hidden;
  min-height: 12rem;
  border-top: 1px solid var(--taupe-soft);
}
.venue__map iframe { width: 100%; height: 100%; min-height: 12rem; border: 0; display: block; }
.venue__event { color: var(--sage-dark) !important; font-size: 0.88rem; margin-bottom: var(--s-2) !important; }

/* =====================================================================
   DRESS CODE & VIBES — one block per event, rotating image gallery + text
   ===================================================================== */
.dress {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  align-items: center;
}
.dress + .dress { margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--taupe-soft); }

.dress__carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
}
.dress__slides { width: 100%; height: 100%; }
.dress__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.dress__slide.is-active { opacity: 1; }

.dress__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--charcoal);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  border: 1px solid var(--taupe-soft);
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.dress__arrow:hover { background: var(--cream); }
.dress__arrow--prev { left: var(--s-2); }
.dress__arrow--next { right: var(--s-2); }

.dress__dots {
  position: absolute;
  bottom: var(--s-2);
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.dress__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--cream) 60%, var(--taupe));
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.dress__dot.is-active { background: var(--cream); transform: scale(1.3); }

.dress__text .chip { margin-bottom: var(--s-2); }
.dress__event { font-size: 1.7rem; margin-bottom: var(--s-1); }
.dress__code {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--s-2);
}
.dress__text p:last-child { color: var(--taupe); }

/* =====================================================================
   TRAVEL & STAY — full-width block per region, roomy stacked categories
   ===================================================================== */
.travelblock {
  background: var(--cream);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-4);
}
.travelblock + .travelblock { margin-top: var(--s-4); }
.travelblock__head { max-width: 44rem; margin-bottom: var(--s-5); }
.travelblock__head .chip { margin-bottom: var(--s-2); }
.travelblock__title { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: var(--s-2); }
.travelblock__intro { color: var(--taupe); }
.travelblock__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.travelblock__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-1);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--taupe-soft);
}
.travelblock__item:first-child { border-top: 0; padding-top: 0; }
.travelblock__item h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: var(--s-1) 0 0;
}
.travelblock__item p {
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 60ch;
}
.travelblock__icon {
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--sage-soft);
  font-size: 1.1rem;
}
.travelblock__label { display: flex; align-items: center; gap: var(--s-2); }
.travelblock__label h4 { margin: 0 !important; }

/* =====================================================================
   INFO CARDS
   ===================================================================== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.info-card {
  background: var(--white);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: var(--s-4);
  text-align: center;
}
.section--alt .info-card { background: var(--cream); }
.info-card__icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  margin: 0 auto var(--s-3);
  border-radius: 50%;
  background: var(--sage-soft);
  font-size: 1.3rem;
}
.info-card__title { font-size: 1.35rem; margin-bottom: var(--s-2); }
.info-card p { color: var(--taupe); font-size: 0.95rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  text-align: center;
  padding: var(--s-7) var(--gutter) var(--s-6);
  background: var(--cream);
  border-top: 1px solid var(--taupe-soft);
}
.footer__sprig { width: 72px; color: var(--sage); opacity: .6; margin: 0 auto var(--s-3); }
.footer__names { font-family: var(--font-display); font-size: 1.9rem; margin: 0; }
.footer__tag {
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--taupe); margin-top: var(--s-2);
}

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* =====================================================================
   RESPONSIVE — tablet & up
   ===================================================================== */
@media (min-width: 640px) {
  .events  { grid-template-columns: repeat(2, 1fr); }
  .cards   { grid-template-columns: repeat(2, 1fr); }
  .rsvp    { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .travelblock { padding: var(--s-6) var(--s-5); }
  /* Category label/icon on the left, roomy text on the right */
  .travelblock__item {
    grid-template-columns: 14rem 1fr;
    gap: var(--s-4);
    align-items: start;
  }
}

@media (min-width: 900px) {
  :root { --gutter: var(--s-4); }
  .cards   { grid-template-columns: repeat(3, 1fr); }
  /* Dress blocks: photos beside text, alternating sides */
  .dress { grid-template-columns: 1.1fr 1fr; gap: var(--s-5); }
  .dress--flip .dress__photos { order: 2; }
}

/* =====================================================================
   RESPONSIVE — mobile nav + tighter section padding
   ===================================================================== */
@media (max-width: 720px) {
  :root { --section-y: var(--s-6); }   /* 48px+ vertical on mobile */

  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--taupe-soft);
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .nav__links.is-open { max-height: 22rem; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: var(--s-2); }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
