/* GSK Productions — /pre-wedding.html
   A dedicated, cinematic showcase for pre-wedding film inspiration.
   Scoped under body.page-prewedding. Shares the same full-page dark
   "screening room" treatment introduced for /tv-commercials.html, with an
   asymmetric featured layout and a two-column catalogue grid instead of
   the commercials page's centered/auto-fit patterns. */

body.page-prewedding {
  background: var(--navy-ink);
  color: #C9D0E6;
}

.page-prewedding .site-nav {
  background: rgba(28, 33, 56, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.page-prewedding .nav-links a {
  color: #C9D0E6;
}

.page-prewedding .nav-links a:hover,
.page-prewedding .nav-links a.active {
  color: var(--cyan-bright);
}

.page-prewedding .burger span {
  background: #fff;
}

.page-prewedding .band-alt {
  background: var(--navy);
}

/* ---------- Hero ---------- */
.page-prewedding .hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 85% 0%, #333D68 0%, var(--navy-ink) 55%);
}

.page-prewedding .hero h1 {
  color: #fff;
}

.page-prewedding .hero .lead {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  max-width: 62ch;
}

.page-prewedding .hero .sub {
  color: #C9D0E6;
  max-width: 60ch;
  margin-top: 14px;
}

.page-prewedding .hero .secondary {
  color: #8E97BD;
  font-size: .96rem;
  max-width: 60ch;
  margin-top: 12px;
}

/* ---------- Section heading on dark ---------- */
.page-prewedding .sec-head .eyebrow {
  color: var(--cyan-bright);
}

.page-prewedding .sec-head h2 {
  color: #fff;
}

.page-prewedding .sec-head p {
  color: #9AA4C6;
  max-width: 68ch;
}

/* ---------- Shared pill / link styles ---------- */
.page-prewedding .pill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-prewedding .cat-pill {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cyan-bright);
  background: rgba(50, 180, 230, .12);
  border: 1px solid rgba(50, 180, 230, .3);
  padding: 4px 11px;
  border-radius: 100px;
}

.page-prewedding .duration {
  font-size: .82rem;
  color: #8E97BD;
  font-variant-numeric: tabular-nums;
}

.page-prewedding .watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--cyan-bright);
  text-decoration: none;
}

.page-prewedding .watch-link:hover {
  text-decoration: underline;
}

.page-prewedding .watch-link svg {
  width: 13px;
  height: 13px;
}

/* ---------- Featured flagship film (asymmetric editorial layout) ---------- */
.page-prewedding .pw-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 44px;
}

.page-prewedding .pw-featured > .yt-lite {
  width: 100%;
  min-width: 0;
}

.page-prewedding .pw-featured-meta .eyebrow {
  color: var(--cyan-bright);
}

.page-prewedding .pw-featured-meta h3 {
  color: #fff;
  font-size: 1.9rem;
  margin: 14px 0 0;
}

.page-prewedding .pw-featured-meta p.desc {
  color: #AEB7D4;
  margin: 14px 0 20px;
}

@media (max-width: 900px) {
  .page-prewedding .pw-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- Catalogue grid (two columns desktop, one mobile) ---------- */
.page-prewedding .pw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}

@media (max-width: 720px) {
  .page-prewedding .pw-grid {
    grid-template-columns: 1fr;
  }
}

.page-prewedding .pw-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .2s, transform .2s;
}

.page-prewedding .pw-card:hover {
  border-color: rgba(50, 180, 230, .35);
  transform: translateY(-3px);
}

.page-prewedding .pw-card .yt-lite {
  margin-bottom: 16px;
}

.page-prewedding .pw-card h3 {
  color: #fff;
  font-size: 1.12rem;
  margin: 12px 0 8px;
}

.page-prewedding .pw-card p.desc {
  color: #9AA4C6;
  font-size: .92rem;
  margin: 0 0 14px;
}

/* ---------- Packages & Pricing ---------- */
.page-prewedding .pw-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}

@media (max-width: 1000px) {
  .page-prewedding .pw-pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .page-prewedding .pw-pkg-grid {
    grid-template-columns: 1fr;
  }
}

.page-prewedding .pw-pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.page-prewedding .pw-pkg.feat {
  border-color: var(--cyan-bright);
}

.page-prewedding .pw-pkg-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--cyan-bright);
  color: #06202B;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.page-prewedding .pw-pkg-tag.alt {
  background: rgba(255, 255, 255, .12);
  color: #EAF1FB;
}

.page-prewedding .pw-pkg h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 6px 0 4px;
}

.page-prewedding .pw-pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 18px;
}

.page-prewedding .pw-pkg-price .from {
  font-size: .76rem;
  color: #8E97BD;
}

.page-prewedding .pw-pkg-price .amt {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--cyan-bright);
}

.page-prewedding .pw-pkg ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}

.page-prewedding .pw-pkg li {
  font-size: .88rem;
  color: #AEB7D4;
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.page-prewedding .pw-pkg li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--cyan-bright);
  font-weight: 700;
}

.page-prewedding .pw-pkg-btn {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 100px;
  padding: 12px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s;
}

.page-prewedding .pw-pkg.feat .pw-pkg-btn {
  background: var(--cyan-bright);
  color: #06202B;
}

.page-prewedding .pw-pkg-btn:hover {
  background: var(--cyan-bright);
  color: #06202B;
}

.page-prewedding .pw-pkg-note {
  font-size: .84rem;
  color: #8E97BD;
  margin-top: 26px;
  max-width: 70ch;
}

.page-prewedding .pw-pkg-note a {
  color: var(--cyan-bright);
  font-weight: 600;
}

/* ---------- The Pre-Wedding Experience (process steps) ---------- */
.page-prewedding .pw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 780px) {
  .page-prewedding .pw-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.page-prewedding .pw-step {
  position: relative;
  padding: 26px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}

.page-prewedding .pw-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
  color: #4A5487;
}

@media (max-width: 780px) {
  .page-prewedding .pw-step:not(:last-child)::after {
    content: '\2193';
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%);
  }
}

.page-prewedding .pw-step .n {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--cyan-bright);
  margin-bottom: 10px;
}

.page-prewedding .pw-step h4 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.page-prewedding .pw-step p {
  color: #9AA4C6;
  font-size: .92rem;
  margin: 0;
}

