﻿:root {
  --bg: #f6f1ea;
  --paper: #fbf7f2;
  --ink: #2c241f;
  --muted: #7c6d60;
  --accent: #c3a180;
  --accent-dark: #a7825e;
  --line: rgba(44, 36, 31, 0.15);
  --radius: 24px;
  --shadow: 0 25px 60px rgba(44, 36, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 161, 128, 0.18), rgba(195, 161, 128, 0));
  pointer-events: none;
  z-index: 0;
}

.page::before {
  top: -220px;
  left: -200px;
}

.page::after {
  bottom: -260px;
  right: -240px;
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.content-shell {
  width: min(560px, 92vw);
  margin: 60px auto;
  padding: 48px 36px 64px;
  background: #e8f0e3;
  border-radius: 42px;
  box-shadow: 0 20px 50px rgba(44, 36, 31, 0.18);
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__subtitle {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}

.section__note {
  text-align: center;
  margin: 0 0 36px;
  color: var(--muted);
}

.section__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--muted);
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

.envelope-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f7f2ec 0%, #efe4d8 100%);
  display: grid;
  place-items: center;
  z-index: 10;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.envelope-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.envelope {
  width: 520px;
  max-width: 92vw;
  height: min(600px, 85vh);
  background: #b6b08a;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(44, 36, 31, 0.25);
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  border: 1px solid rgba(44, 36, 31, 0.15);
}

.envelope__flap {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 120%;
  height: 42%;
  background: linear-gradient(180deg, #c8c19c, #b8b189);
  border-bottom-left-radius: 60% 95%;
  border-bottom-right-radius: 60% 95%;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: inset 0 -10px 18px rgba(44, 36, 31, 0.16);
  backface-visibility: hidden;
  z-index: 3;
  pointer-events: none;
}

.envelope__flap::after {
  content: '';
  position: absolute;
  inset: 12% 12% 0;
  border-bottom-left-radius: 55% 90%;
  border-bottom-right-radius: 55% 90%;
  background: rgba(255, 255, 255, 0.05);
}

.envelope__paper {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 100px 46px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f7f3e8;
  transition: transform 0.7s ease;
}

.envelope__lower {
  position: absolute;
  top: calc(48% + 26px);
  left: 0;
  right: 0;
  padding: 0 46px 40px;
  display: grid;
  gap: 22px;
  text-align: left;
  z-index: 6;
}

.envelope__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.envelope__string {
  position: absolute;
  top: calc(36% - 16px);
  left: 6%;
  width: 88%;
  height: 140px;
  z-index: 4;
  fill: none;
  stroke: #3f2d1d;
  stroke-width: 2;
  opacity: 0.85;
  pointer-events: none;
}

.envelope__string path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.envelope__string-main {
  stroke-width: 2.4;
}

.envelope__string-tail {
  stroke-width: 1.8;
  opacity: 0.9;
}

.envelope__seals {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.envelope__seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5a3c24, #2b1a10);
  display: grid;
  place-items: center;
  color: #f8f1e6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(44, 36, 31, 0.35);
}

.envelope__seal--top {
  position: absolute;
  top: calc(40% - 21px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.envelope__seal--bottom {
  position: absolute;
  top: calc(48% - 21px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.envelope__lines {
  margin-top: 0;
  width: 100%;
  display: grid;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.envelope__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(247, 243, 232, 0.6);
}

.envelope__label {
  font-weight: 600;
}

.envelope__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.04em;
}

.open-btn {
  background: transparent;
  border: 1px solid rgba(247, 243, 232, 0.8);
  padding: 12px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  cursor: pointer;
  color: #f7f3e8;
  position: relative;
  z-index: 6;
  margin: 0 auto;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  touch-action: manipulation;
}

.open-btn:hover {
  background: rgba(247, 243, 232, 0.85);
  color: #2f241b;
  transform: translateY(-1px);
}

.open-btn:focus-visible {
  outline: 2px solid #f7f3e8;
  outline-offset: 3px;
}

.open-btn:disabled {
  cursor: default;
  opacity: 0.7;
  transform: none;
}

.envelope__hint {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(247, 243, 232, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.envelope.is-open .envelope__flap {
  transform: translateX(-50%) rotateX(160deg);
  pointer-events: none;
}

.envelope.is-open .envelope__paper {
  transform: translateY(-18px);
}

.envelope__seals,
.envelope__string {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.envelope.is-open .envelope__seals {
  opacity: 0;
  transform: translateY(10px) scale(0.6);
}

.envelope.is-open .envelope__string {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.envelope.is-open .envelope__string-tail {
  stroke-dasharray: 6 10;
  animation: string-unravel 0.6s ease forwards;
}

@keyframes string-unravel {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 24;
  }
}

.hero {
  padding: 0 0 40px;
}

.hero__top {
  margin: -48px -36px 0;
  padding: 48px 36px 24px;
  background: #edefec;
  border-radius: 42px 42px 30px 30px;
}

.hero__inner {
  display: grid;
  gap: 36px;
  place-items: center;
  text-align: center;
}

.hero__inner--content {
  margin-top: 8px;
}

.hero__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #edefec;
  border: 1px solid rgba(44, 36, 31, 0.1);
  box-shadow: 0 18px 40px rgba(44, 36, 31, 0.15);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0;
  letter-spacing: 0.18em;
}

.hero__text {
  margin: 0;
  font-size: 20px;
  color: var(--muted);
}

.invite {
  background: transparent;
}

.calendar {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 36, 31, 0.08);
  width: 100%;
}

.calendar__meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  font-size: 14px;
}

.calendar__day {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.calendar__date {
  padding: 8px 0;
  border-radius: 16px;
}

.calendar__date.muted {
  color: var(--muted);
}

.calendar__date.highlight {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.calendar__caption {
  margin-top: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.program {
  background: transparent;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline__item:last-child {
  border-bottom: none;
}

.timeline__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--accent-dark);
}

.timeline__slot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline__icon {
  width: 28px;
  height: 28px;
  color: #d7cfc0;
  flex: 0 0 auto;
}

.timeline__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 3px rgba(44, 36, 31, 0.2));
}

.timeline__content h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.timeline__content p {
  margin: 0;
  color: var(--muted);
}

.photo-card,
.lookbook__item {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, rgba(195, 161, 128, 0.25), rgba(195, 161, 128, 0.05));
  border-radius: var(--radius);
  border: 1px solid rgba(44, 36, 31, 0.1);
  display: grid;
  place-items: center;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 auto 24px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin: 0 auto;
  touch-action: manipulation;
}

.link-btn:hover {
  background: var(--ink);
  color: #fff;
}

.details__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.details__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(44, 36, 31, 0.08);
  box-shadow: var(--shadow);
}

.details__card h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
}

.details__card p {
  margin: 0;
  color: var(--muted);
}

.dress__tiers {
  display: grid;
  gap: 36px;
  text-align: center;
}

.dress__tier {
  display: grid;
  gap: 16px;
}

.dress__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink);
  letter-spacing: 0.08em;
}

.dress__text {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--muted);
}

.dress__lookbook-note {
  margin: 32px 0 18px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--muted);
}

.dress__more-note {
  margin: 20px 0 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.dress__more-btn {
  margin-top: 0;
}

.palette {
  display: flex;
  --palette-gap: 10px;
  gap: var(--palette-gap);
  margin: 28px 0;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.palette__item {
  background: #fff;
  border-radius: 18px;
  padding: 12px 10px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(44, 36, 31, 0.08);
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  flex: 0 1 calc((100% - (2 * var(--palette-gap))) / 3);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  touch-action: manipulation;
}

.palette__item:visited {
  color: var(--muted);
}

.palette__item:focus-visible {
  outline: 2px solid rgba(44, 36, 31, 0.6);
  outline-offset: 3px;
}

.palette__item::before {
  content: '';
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: var(--swatch);
  margin-bottom: 8px;
}

.lookbook {
  position: relative;
  width: 100%;
  margin: 6px 0 0;
}

.location__gallery {
  margin-bottom: 28px;
}

.lookbook__display {
  width: 100%;
  height: 860px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #e7dfd4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(44, 36, 31, 0.1);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.lookbook__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lookbook__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(44, 36, 31, 0.25);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0.65;
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}

.lookbook__nav::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(44, 36, 31, 0.7);
  border-right: 2px solid rgba(44, 36, 31, 0.7);
  transform: rotate(45deg);
}

.lookbook__nav--prev {
  left: 8px;
}

.lookbook__nav--prev::before {
  transform: rotate(-135deg);
}

.lookbook__nav--next {
  right: 8px;
}

.lookbook__nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.lookbook__nav:focus-visible {
  outline: 2px solid #f7f3e8;
  outline-offset: 3px;
}

.contact {
  background: transparent;
}

.contact__person {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin: 0;
}

.contact__phone {
  display: block;
  font-size: 20px;
  color: var(--muted);
  margin-top: 8px;
}

.contact__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.contact__telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(44, 36, 31, 0.2);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  touch-action: manipulation;
}

.contact__telegram:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.contact__telegram:focus-visible {
  outline: 2px solid rgba(44, 36, 31, 0.6);
  outline-offset: 3px;
}

.contact__telegram-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact__telegram svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.rsvp {
  background: transparent;
}

.form {
  display: grid;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(44, 36, 31, 0.2);
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field legend {
  margin-bottom: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.primary-btn {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(44, 36, 31, 0.2);
}

.form__status {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
}

.form__policy {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.success-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.success-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 22, 0.34);
}

.success-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  background: #f6f1ea;
  border: 1px solid rgba(44, 36, 31, 0.16);
  border-radius: 22px;
  box-shadow: 0 28px 55px rgba(44, 36, 31, 0.28);
  padding: 26px 22px 22px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.success-modal.is-open .success-modal__dialog {
  transform: translateY(0) scale(1);
}

.success-modal__title {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  letter-spacing: 0.06em;
}

.success-modal__text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.success-modal__btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}

.success-modal__btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.success-modal__btn:focus-visible {
  outline: 2px solid rgba(44, 36, 31, 0.7);
  outline-offset: 3px;
}

.countdown {
  background: transparent;
}


.countdown-mini {
  margin: 28px auto 40px;
}

.countdown-mini .countdown__grid {
  margin-top: 0;
}

.countdown__grid {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.countdown__item {
  background: #fff;
  border-radius: 20px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(44, 36, 31, 0.08);
  box-shadow: var(--shadow);
  flex: 1 1 0;
  min-width: 0;
}

.countdown__value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3.6vw, 34px);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: clamp(9px, 1.8vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}

.countdown__names {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin: 32px 0 0;
  letter-spacing: 0.2em;
}


.signoff {
  background: transparent;
}

@media (max-width: 720px) {
  .hero__photo {
    border-radius: 16px;
  }

  .countdown__grid {
    gap: 8px;
  }

  .countdown__item {
    padding: 10px 6px;
    border-radius: 16px;
  }

  .countdown__label {
    letter-spacing: 0.08em;
  }

  .palette {
    --palette-gap: 6px;
    margin: 20px 0;
  }

  .palette__item {
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 10px 6px;
  }

  .palette__item::before {
    height: 32px;
    margin-bottom: 6px;
  }

  .dress__tiers {
    gap: 28px;
  }

  .dress__text,
  .dress__lookbook-note {
    font-size: 16px;
  }

  .dress__more-note {
    font-size: 12px;
  }

  .lookbook__display {
    height: 520px;
  }

  .lookbook__nav {
    display: none;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline__time {
    font-size: 22px;
  }

  .envelope__row {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}















