.weddings-page {
  background: #f1f8e8;
}

.wedding-hero {
  min-height: 660px;
}

.wedding-hero .hero-title {
  max-width: 1100px;
}

.wedding-hero .hero-sub {
  max-width: 760px;
}

.wedding-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(9, 18, 17, .16), rgba(9, 18, 17, .34) 42%, rgba(9, 18, 17, .78));
}

.wedding-intro,
.wedding-experience,
.wedding-promise,
.wedding-gallery-section {
  padding: clamp(72px, 9vw, 130px) clamp(22px, 6vw, 110px);
}

.wedding-intro {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.wedding-copy {
  max-width: 620px;
}

.wedding-copy .refresh-title {
  margin: 12px 0 22px;
}

.wedding-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--ochre);
  color: var(--muted-ink);
  background: rgba(255, 255, 255, .58);
  font-size: .9rem;
  line-height: 1.6;
}

.wedding-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}

.wedding-collage img,
.wedding-feature-grid img,
.wedding-promise-images img,
.wedding-gallery img {
  width: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .36s var(--ease), box-shadow .36s var(--ease), filter .36s var(--ease);
}

.wedding-collage img {
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 46px rgba(24, 48, 43, .13);
}

.wedding-collage .wide {
  grid-row: span 2;
  aspect-ratio: 4 / 5.35;
}

.weddings-page .wedding-collage img:hover,
.weddings-page .wedding-feature-grid img:hover,
.weddings-page .wedding-promise-images img:hover,
.weddings-page .wedding-gallery img:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 22px 48px rgba(24, 48, 43, .2);
  filter: saturate(1.04);
}

.wedding-atmosphere {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.wedding-atmosphere img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 19, 17, .78), rgba(10, 19, 17, .12) 58%);
}

.wedding-atmosphere > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(46px, 8vw, 110px);
}

.wedding-atmosphere h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 1;
  margin: 12px 0 20px;
}

.wedding-atmosphere p {
  max-width: 690px;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.8;
}

.wedding-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.wedding-feature-grid article {
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 48, 43, .08);
}

.wedding-feature-grid img {
  aspect-ratio: 4 / 5;
}

.wedding-feature-grid h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--ink);
  margin: 22px 22px 8px;
}

.wedding-feature-grid p {
  color: var(--muted-ink);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0 22px 24px;
}

.wedding-promise {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  background: #f8fbf2;
}

.wedding-promise-images {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 12px;
  align-items: end;
}

.wedding-promise-images img:first-child {
  aspect-ratio: 3 / 4.4;
}

.wedding-promise-images img:last-child {
  aspect-ratio: 4 / 5;
  margin-top: 80px;
}

.wedding-promise .refresh-title {
  margin: 12px 0 22px;
}

.wedding-promise .btn {
  margin-top: 18px;
}

.wedding-gallery-section {
  background: #edf8e7;
}

.wedding-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  max-width: 1180px;
  margin: 38px auto 0;
}

.wedding-gallery img {
  aspect-ratio: 1 / 1;
}

.wedding-gallery .large {
  grid-column: span 2;
  grid-row: span 2;
}

.wedding-gallery .tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2.05;
}

.wedding-gallery .wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.wedding-cta {
  min-height: 420px;
}

@media (max-width: 960px) {
  .wedding-intro,
  .wedding-promise {
    grid-template-columns: 1fr;
  }

  .wedding-feature-grid {
    grid-template-columns: 1fr;
  }

  .wedding-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wedding-hero {
    min-height: 620px;
  }

  .wedding-intro,
  .wedding-experience,
  .wedding-promise,
  .wedding-gallery-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wedding-collage,
  .wedding-promise-images {
    grid-template-columns: 1fr;
  }

  .wedding-collage .wide,
  .wedding-promise-images img:first-child,
  .wedding-promise-images img:last-child {
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }

  .wedding-gallery {
    grid-template-columns: 1fr;
  }

  .wedding-gallery .large,
  .wedding-gallery .wide {
    grid-column: auto;
  }

  .wedding-gallery .tall {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
}
