/* =========================================================
   HOCHZEITEN PAGE — romantic / light / feminine
   ========================================================= */

body.theme-wedding {
  background: var(--beige);
  color: #4a3d34;
}

body.theme-wedding .site-nav .nav-links a {
  color: #4a3d34;
}

body.theme-wedding .site-nav.scrolled {
  background: rgba(244, 239, 230, 0.9);
  box-shadow: 0 1px 0 rgba(180, 140, 100, 0.2);
}

body.theme-wedding .nav-toggle span { background: #4a3d34; }

/* ---------- Shared block rhythm ---------- */
.hz-block {
  padding: 7rem 0;
}

.hz-intro { padding-top: calc(var(--nav-h) + 5rem); }

/* ---------- Lady Champagner — parallax photo background ---------- */
.hz-champagne {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  box-shadow: 0 -30px 60px rgba(74, 61, 52, 0.18);
  padding-top: 6rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: #2a221c url('../img/hz-parallax-bg.jpg') center 42% / cover no-repeat;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  .hz-champagne { background-attachment: scroll; min-height: 0; }
}

.hz-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.55) 0%, rgba(20, 15, 10, 0.4) 45%, rgba(20, 15, 10, 0.6) 100%);
}

.hz-champagne-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hz-champagne .wed-script { color: var(--gold-light); }
.hz-champagne .hz-head .display-lg { color: var(--white); }
.hz-champagne .hz-caption { color: rgba(244, 239, 230, 0.82); }

.hz-champagne .hz-photo {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wed-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: #8a6a4e;
  line-height: 0.9;
}

.hz-head {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hz-head .display-lg {
  font-family: var(--font-display);
  color: #4a3d34;
}

.hz-lead {
  margin-top: 0.6rem;
  max-width: 480px;
  font-weight: 300;
  color: #6b5c4e;
  font-size: 1.02rem;
}

/* ---------- Photo tiles ---------- */
.hz-photo {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(138, 106, 78, 0.12);
}

.hz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.94);
}

.hz-photo:hover img { transform: scale(1.06); filter: saturate(1.05); }

.hz-media-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.hz-media-two .hz-photo { aspect-ratio: 4 / 5; }

.hz-media-two--wide .hz-photo { aspect-ratio: 3 / 2; }

@media (max-width: 900px) {
  .hz-media-two--wide .hz-photo { aspect-ratio: 4 / 3; }
}

.hz-caption {
  max-width: 620px;
  margin: 2.8rem auto 0;
  text-align: center;
  font-weight: 300;
  color: #6b5c4e;
  font-size: 1.02rem;
  line-height: 1.9;
}

/* ---------- Staggered two-photo layout ---------- */
.hz-media-two--stagger {
  align-items: start;
  width: calc(100% + 7vw);
  margin-left: -3.5vw;
  margin-right: -3.5vw;
  gap: 0.75rem;
}

.hz-media-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hz-media-two--stagger .hz-photo { aspect-ratio: 3 / 2; }

.hz-angels .hz-media-two--stagger { gap: 0; }

.hz-angels .hz-photo--offset {
  aspect-ratio: 3 / 4;
  max-width: 68%;
  margin-left: 0;
  margin-right: auto;
}

.hz-photo--offset {
  margin-top: 4.5rem;
}

@media (max-width: 900px) {
  .hz-angels .hz-photo--offset { max-width: 80%; }
}

.hz-caption--left {
  max-width: none;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .hz-media-two--stagger {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hz-photo--offset { margin-top: 0; }
  .hz-caption--left { text-align: center; }
}

/* ---------- Lady Champagner (9:16 triptych) ---------- */
.hz-champagne-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hz-photo--tall { aspect-ratio: 9 / 16; }

.hz-champagne-grid .hz-photo:nth-child(2) { margin-top: 2.5rem; }

@media (max-width: 900px) {
  .hz-media-two { grid-template-columns: 1fr; }
  .hz-champagne-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hz-champagne-grid .hz-photo:nth-child(2n) { margin-top: 0; }
  .hz-photo--tall { aspect-ratio: 3 / 4; }
}

/* ---------- Final CTA — parallax photo background ---------- */
.hz-final-cta {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  box-shadow: 0 -30px 60px rgba(74, 61, 52, 0.18);
  padding: 10rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: #2a221c url('../img/cta-bg.jpg') center 38% / cover no-repeat;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  .hz-final-cta { background-attachment: scroll; min-height: 0; }
}

.hz-final-cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hz-final-cta .wed-script { color: var(--gold-light); }

.hz-final-cta .display-lg {
  color: var(--white);
  margin-top: 0.6rem;
}

.hz-final-cta .btn {
  margin-top: 2.6rem;
}

body.theme-wedding .site-footer {
  background: var(--beige);
  border-top: 1px solid rgba(138, 106, 78, 0.2);
}

body.theme-wedding .footer-links a {
  color: rgba(74, 61, 52, 0.6);
}
body.theme-wedding .footer-links a:hover { color: #8a6a4e; }

body.theme-wedding .footer-copy {
  color: rgba(74, 61, 52, 0.45);
}
