body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  text-align: center;
}

body.no-scroll {
  overflow: hidden;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  animation: fadeIn 0.8s ease;
}

.hero {
  margin-bottom: 50px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-photo {
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  margin: 0 auto 28px;
  padding: 8px;
  background: #faf7f2;
  border: 1px solid rgba(80, 60, 40, 0.10);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.main-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

h1 {
  margin: 0 0 12px;
  font-size: 56px;
  line-height: 1.05;
}

.quote {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 28px;
}

.story {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: #555;
}

.story p {
  margin: 0 0 10px;
}

.gallery-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.closing {
  max-width: 720px;
  margin: 10px auto 35px;
  font-size: 28px;
  line-height: 1.4;
  color: #333;
}

.closing p {
  margin: 0;
}

.footer {
  font-size: 15px;
  color: #444;
  padding-top: 10px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .wrap {
    padding: 28px 16px 24px;
  }

  h1 {
    font-size: 44px;
  }

  .quote {
    font-size: 24px;
  }

  .story {
    font-size: 18px;
  }

  .gallery img {
    height: 220px;
  }

  .closing {
    font-size: 22px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}



.video-section {
    margin-top: 40px;
    text-align: center;
}

.lova-video {
    width: 100%;
    max-width: 360px;

    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.media-divider {
    margin: 70px 0 30px;
    text-align: center;
}

.media-divider p {
    font-size: 22px;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
}