/* ═══════════════════════════════════════
   WEDDING PAGE – BESPOKE STYLES
═══════════════════════════════════════ */

/* ── HERO ── */
.w-hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.w-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 100%);
}
.w-hero__title {
  position: relative;
  z-index: 2;
  font-family: 'Alta';
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding-bottom: clamp(1.5rem, 5vh, 3.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}

/* ── STORY SECTION ── */
.w-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: 0;
  background: #000;
  color: #f0ece4;
  min-height: 620px;
}
.w-story__text {
  position: relative;
  z-index: 2;
  padding: clamp(3.2rem, 7vw, 5.8rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2.4rem, 5vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(to right, #000 0%, #000 70%, rgba(0,0,0,.82) 88%, rgba(0,0,0,0) 100%);
}
.w-story__heading {
  font-family: 'Alta';
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #f7f1e6;
  margin: 0;
}
.w-story__sub {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fff;
  margin: -2px 0 10px;
}
.w-story__body {
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  color: rgba(255,255,255,.84);
  margin: 0;
  max-width: 60ch;
}
.w-story__image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.w-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

/* ── PHOTO GRID ── */
.w-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  background: #000;
}
.w-grid__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.w-grid__item {
  overflow: hidden;
  flex: 1;
  background: transparent;
}
.w-grid__item--tall {
  flex: 1.55;
}
.w-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  border: none;
  outline: none;
  box-shadow: none;
}
.w-grid__item:hover img {
  transform: scale(1.04);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .w-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .w-story__text {
    background: #000;
    padding: 48px 28px 36px;
  }
  .w-story__image {
    min-height: 420px;
  }
  .w-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
  .w-grid__col {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .w-story__image {
    min-height: 320px;
  }
  .w-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
  }
  .w-grid__col {
    gap: 12px;
  }
}

/* ===== Global header/footer alignment update ===== */
.header__inner--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding-top: 18px;
}

.brand--center {
  justify-self: center;
  align-items: center;
  padding: 0;
}

.brand__logo {
  height: 60px;
  width: auto;
}

.nav--desktop-left {
  justify-content: flex-end;
}

.nav--desktop-right {
  justify-content: flex-start;
}

.nav--desktop-left,
.nav--desktop-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__enquire-row {
  display: flex;
  justify-content: center;
  padding: 10px 24px 14px;
}

.header__cta--center {
  min-width: 118px;
  text-align: center;
}

.footer-content--compact {
  max-width: 980px;
}

footer {
  margin-top: 28px;
  padding: 28px 0 24px;
  border-top: none;
  background: #050505;
}

.footer-sections {
  gap: 32px;
  margin-bottom: 22px;
}

.footer-section,
.footer-section::before,
.footer-sections::before,
.footer-section__title::before,
.footer-section__title::after {
  border-top: none !important;
  box-shadow: none !important;
  content: unset;
}

.footer-section__title {
  margin-bottom: 12px;
}

.footer-section__text,
.footer-contact__item,
.footer-contact__name {
  margin-top: 0;
}

.footer-section__text--tight {
  margin-bottom: 12px;
}

.footer-social {
  margin-top: 0;
}

.footer-bottom--compact {
  padding-top: 16px;
}

@media (min-width: 1061px) {
  .header__actions {
    display: none;
  }

  .nav--desktop {
    display: flex;
  }
}

@media (max-width: 1060px) {
  .header__inner--centered {
    grid-template-columns: 1fr auto;
    padding-top: 8px;
  }

  .header__inner--centered .brand--center {
    justify-self: start;
  }

  .brand__logo {
    height: 38px;
  }

  .header__enquire-row {
    display: none;
  }

  .nav--desktop-left,
  .nav--desktop-right {
    display: none;
  }
}