/* Phase 3 — Supporting pages */

.contact-page {
  padding-top: calc(80px + var(--space-md));
}

.faq-item.open .faq-a {
  max-height: 320px;
}

/* Page hero — word animation */
.page-hero--words .hero-label,
.page-hero--words .hero-eyebrow {
  opacity: 0;
}

.page-hero--words .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(-24px);
  margin-right: 0.2em;
}

.page-hero--words .hero-word--italic {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero--words .hero-subtext,
.page-hero--words .hero-actions {
  opacity: 0;
  transform: translateY(16px);
}

.page-hero--full {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Gallery — true masonry */
.gallery-masonry--columns {
  display: block;
  column-count: 3;
  column-gap: 8px;
}

.gallery-masonry--columns .gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  aspect-ratio: auto;
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery-masonry--columns .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-masonry--columns .gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: var(--black);
}

.gallery-item--video {
  position: relative;
  cursor: pointer;
}

.gallery-video-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 28px;
  pointer-events: none;
  transition: background 0.3s ease;
}

.gallery-item--video:hover .gallery-video-badge {
  background: rgba(0, 0, 0, 0.4);
}

.gallery-masonry--columns .gallery-item.is-filtered-out {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

.gallery-filter .filter-btn.active {
  background: transparent;
  border-color: var(--grey-light);
  color: var(--black);
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* Contact — 40 / 60 */
.contact-inner {
  grid-template-columns: 2fr 3fr;
}

.contact-info__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.12;
  margin: 16px 0 24px;
}

.contact-info__intro {
  font-size: var(--text-body-lg);
  color: var(--charcoal);
  line-height: var(--lh-body);
  margin-bottom: 40px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.25s, color 0.25s;
}

.contact-social a:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}

.contact-form-wrap .btn-submit {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  background: transparent;
  border: none;
  padding: 24px 0 0;
  text-align: center;
}

/* Bandstand */
.bandstand-card .btn .fa-arrow-up-right-from-square {
  margin-left: 8px;
  font-size: 12px;
}

/* Team portrait placeholders */
.team-avatar {
  width: 100%;
  max-width: 200px;
  height: 240px;
  border-radius: 0;
  margin: 0 auto 24px;
}

/* Logo strip — mobile scroll */
.logo-strip--scroll {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.logo-strip--scroll::-webkit-scrollbar {
  display: none;
}

.logo-strip--scroll span {
  flex-shrink: 0;
}

/* Wedding type image cards */
.wedding-types--visual {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.wedding-types--visual .wedding-type-card {
  grid-column: span 2;
}

.wedding-types--visual .wedding-type-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.wedding-types--visual .wedding-type-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.wedding-types--visual .wedding-type-card {
  position: relative;
  min-height: 380px;
  padding: 0;
  border: none;
  text-align: left;
  overflow: hidden;
  display: block;
}

.wedding-types--visual .wedding-type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.wedding-types--visual .wedding-type-card:hover img {
  transform: scale(1.06);
}

.wedding-type-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 55%);
  transition: background 0.5s ease;
}

.wedding-types--visual .wedding-type-card:hover .wedding-type-card__overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.35) 60%);
}

.wedding-type-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  color: #fff;
}

.wedding-type-card__content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  margin: 0 0 8px;
}

.wedding-type-card__teaser {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.wedding-type-card__full {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s ease, margin 0.4s ease;
}

.wedding-types--visual .wedding-type-card:hover .wedding-type-card__teaser {
  opacity: 0;
  max-height: 0;
}

.wedding-types--visual .wedding-type-card:hover .wedding-type-card__full {
  max-height: 100px;
  opacity: 1;
  margin-top: 8px;
}

/* Vertical planning timeline */
.planning-timeline--vertical {
  display: block;
  max-width: 640px;
  margin: 56px auto 0;
  padding-left: 32px;
  border-left: 1px solid var(--gold-line);
}

.planning-timeline--vertical .planning-timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
  text-align: left;
}

.planning-timeline--vertical .planning-timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ivory);
}

.planning-timeline--vertical .timeline-when {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* Corporate differentiators */
.corp-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.corp-diff-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--grey-light);
}

.corp-diff-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.corp-diff-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 12px;
}

.corp-diff-card p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Warm wedding CTA */
.cta-banner--warm {
  background: var(--ivory-dark);
  color: var(--charcoal);
}

.cta-banner--warm .cta-heading {
  color: var(--black);
}

.cta-banner--warm .cta-sub {
  color: var(--grey);
}

.cta-banner--warm::before,
.cta-banner--warm::after {
  display: none;
}

/* Service detail — initial state for GSAP */
.service-detail__img,
.service-detail__text {
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .gallery-masonry--columns {
    column-count: 2;
  }
  .wedding-types--visual {
    grid-template-columns: 1fr;
  }

  .wedding-types--visual .wedding-type-card,
  .wedding-types--visual .wedding-type-card:nth-child(4),
  .wedding-types--visual .wedding-type-card:nth-child(5) {
    grid-column: auto;
  }
  .corp-diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .gallery-masonry--columns {
    column-count: 1;
  }
}

/* Compact page layouts */
.page-intro {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--ivory);
}

.page-intro__lead {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--grey);
}

.page-intro__list {
  max-width: 36rem;
  margin: 1.75rem auto 0;
}

.page-intro__cta {
  text-align: center;
  margin-top: 2rem;
}

.services-compact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-compact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-compact__item {
  padding: 1.75rem;
  background: var(--ivory);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-compact__item h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--black);
}

.services-compact__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0 0 1rem;
}

.services-compact__item a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.services-compact__cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .services-compact__grid {
    grid-template-columns: 1fr;
  }
}
