.hero {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a6f3e;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f0e6d3;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.6s forwards;
}
.hero__title em {
  color: #c9a267;
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #8899aa;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1s forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #8899aa;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(#c9a267, transparent);
  animation: scrollPulse 2s 2s infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}
.timeline {
  padding: 120px 0;
}
.timeline__track {
  position: relative;
  padding-left: 32px;
}
.timeline__track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #8a6f3e 20%, #8a6f3e 80%, transparent);
}
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: start;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9a267;
  box-shadow: 0 0 12px #c9a267;
}
.timeline__item:nth-child(1) {
  transition-delay: 0s;
}
.timeline__item:nth-child(2) {
  transition-delay: 0.12s;
}
.timeline__item:nth-child(3) {
  transition-delay: 0.24s;
}
.timeline__item:nth-child(4) {
  transition-delay: 0.36s;
}
.timeline__item:nth-child(5) {
  transition-delay: 0.48s;
}
.timeline__item:nth-child(6) {
  transition-delay: 0.6s;
}
.timeline__item:nth-child(7) {
  transition-delay: 0.72s;
}
.timeline__item:nth-child(8) {
  transition-delay: 0.84s;
}
.timeline__year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #c9a267;
  padding-top: 4px;
}
.timeline__card {
  background: #112236;
  border: 1px solid rgba(138, 111, 62, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
}
.timeline__card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #f0e6d3;
  margin-bottom: 8px;
}
.timeline__card p {
  color: #8899aa;
  font-size: 0.95rem;
}

.gallery {
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.slideshow {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.slideshow__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.slideshow .slide {
  min-width: 100%;
  padding: 0 16px;
}
.slideshow .slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.slideshow .slide figcaption {
  margin-top: 12px;
  font-style: italic;
  color: #8899aa;
  font-size: 0.9rem;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid #8a6f3e;
  color: #c9a267;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  backdrop-filter: blur(8px);
}
.slideshow__btn:hover {
  background: rgba(138, 111, 62, 0.3);
}
.slideshow__btn--prev {
  left: 24px;
}
.slideshow__btn--next {
  right: 24px;
}
.slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slideshow__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a6f3e;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slideshow__dots .dot.active {
  background: #c9a267;
  transform: scale(1.3);
}

.cards {
  padding: 120px 0;
}
.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #112236;
  border: 1px solid rgba(138, 111, 62, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 162, 103, 0.08);
  border-color: #8a6f3e;
}
.card:nth-child(1) {
  transition-delay: 0s;
}
.card:nth-child(2) {
  transition-delay: 0.07s;
}
.card:nth-child(3) {
  transition-delay: 0.14s;
}
.card:nth-child(4) {
  transition-delay: 0.21s;
}
.card:nth-child(5) {
  transition-delay: 0.28s;
}
.card:nth-child(6) {
  transition-delay: 0.35s;
}
.card:nth-child(7) {
  transition-delay: 0.42s;
}
.card:nth-child(8) {
  transition-delay: 0.49s;
}
.card:nth-child(9) {
  transition-delay: 0.56s;
}
.card:nth-child(10) {
  transition-delay: 0.63s;
}
.card:nth-child(11) {
  transition-delay: 0.7s;
}
.card:nth-child(12) {
  transition-delay: 0.77s;
}
.card:nth-child(13) {
  transition-delay: 0.84s;
}
.card:nth-child(14) {
  transition-delay: 0.91s;
}
.card:nth-child(15) {
  transition-delay: 0.98s;
}
.card:nth-child(16) {
  transition-delay: 1.05s;
}
.card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6f3e, #c9a267);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #0d1b2a;
  font-weight: 700;
}
.card__message {
  font-style: italic;
  color: #f0e6d3;
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.card__name {
  font-size: 0.8rem;
  color: #8899aa;
  letter-spacing: 0.05em;
}

.closing {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a2e45 0%, #0d1b2a 70%);
  text-align: center;
}
.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.closing__from {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a6f3e;
}
.closing__message {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: #f0e6d3;
  line-height: 1.15;
}
.closing__message em {
  color: #c9a267;
  font-style: italic;
}
.closing__year {
  font-size: 0.9rem;
  color: #8899aa;
  letter-spacing: 0.2em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #0d1b2a;
  color: #f0e6d3;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #c9a267;
  text-align: center;
  margin-bottom: 56px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  padding: 120px 0;
  text-align: center;
}
.intro__quote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #c9a267;
  border-left: 3px solid #8a6f3e;
  padding-left: 24px;
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: left;
  line-height: 1.9;
}
.intro__body {
  font-size: 1.05rem;
  color: #8899aa;
  max-width: 600px;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
