/* empty */

/* SHAFO Wedding Journal */
.wedding-journal-section {
  padding: 110px 6vw;
  background: radial-gradient(circle at top left, rgba(214, 178, 106, .12), transparent 36%),
              linear-gradient(135deg, #090706 0%, #17100d 100%);
  color: #fff;
}

.wedding-journal-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, .95fr);
  gap: 54px;
  align-items: center;
}

.wedding-journal-image {
  border-radius: 34px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
  border: 1px solid rgba(214,178,106,.26);
}

.wedding-journal-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.journal-kicker {
  color: #d6b26a;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 22px;
}

.wedding-journal-content h2 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: .92;
  margin: 0 0 28px;
  font-weight: 500;
}

.wedding-journal-content p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-bottom: 34px;
}

.journal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  border-radius: 999px;
  background: #d6b26a;
  color: #100b08;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 18px 44px rgba(214,178,106,.24);
  transition: transform .25s ease, box-shadow .25s ease;
}

.journal-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(214,178,106,.34);
}

@media (max-width: 860px) {
  .wedding-journal-section {
    padding: 72px 18px;
  }

  .wedding-journal-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wedding-journal-image,
  .wedding-journal-image img {
    min-height: 460px;
  }
}
