/* ============================================================
   WEDDING SERVICE PAGE — wedding/style.css  (Enhanced)
   ============================================================ */

/* ── Hero ── */
.wedding-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wedding-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.wedding-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.08) 100%
  );
}
/* Decorative gold line accent */
.wedding-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold), transparent);
  z-index: 3;
  opacity: 0.7;
}
.wedding-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--nav-h);
}
.wedding-hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wedding-hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.wedding-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--clr-white);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.wedding-hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
}
.wedding-hero__desc {
  font-size: 1.02rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 520px;
}
.wedding-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.wedding-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  animation: scrollBob 2.2s ease-in-out infinite;
}
.wedding-hero__scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.42), transparent);
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ── Stats bar ── */
.stats {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: clamp(36px,6vw,70px) 5%;
  position: relative;
  overflow: hidden;
}
.stats .stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(20px,4vw,50px);
  text-align: center;
}
.stats .stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem,5vw,3.8rem);
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stats .stat__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
@media (max-width: 600px) {
  .stats .stats__grid { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

/* ── Intro split ── */
.wedding-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 620px;
}
.wedding-intro__visual {
  position: relative;
  overflow: hidden;
}
.wedding-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.wedding-intro__visual:hover img { transform: scale(1.05); }
.wedding-intro__badge {
  position: absolute;
  bottom: 32px;
  right: -1px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: 18px 28px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
/* Decorative corner frame on intro image */
.wedding-intro__visual::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--clr-gold);
  border-left: 2px solid var(--clr-gold);
  z-index: 2;
  opacity: 0.6;
}
.wedding-intro__visual::after {
  content: '';
  position: absolute;
  bottom: 20px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--clr-gold);
  border-right: 2px solid transparent;
  z-index: 2;
}
.wedding-intro__copy {
  background: var(--clr-surface);
  padding: clamp(48px,6vw,88px) clamp(32px,5vw,72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.wedding-intro__copy::after {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--clr-gold);
  opacity: 0.07;
  line-height: 1;
}
.wedding-intro__copy .tag { margin-bottom: 18px; }
.wedding-intro__copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: 26px;
}
.wedding-intro__copy h2 em { font-style: italic; color: var(--clr-gold-light); }
.wedding-intro__copy p {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.wedding-intro__copy .btn { margin-top: 16px; align-self: flex-start; }

/* ── What We Cover ── */
.wedding-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
}
.cover-card {
  background: var(--clr-bg2);
  padding: 48px 38px;
  transition: background 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}
.cover-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clr-gold);
  transition: width 0.4s ease;
}
.cover-card:hover::before { width: 100%; }
.cover-card:hover { background: var(--clr-surface); }
.cover-card__icon {
  font-size: 1.9rem;
  color: var(--clr-gold);
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s;
}
.cover-card:hover .cover-card__icon { transform: scale(1.15); }
.cover-card h3 {
  font-family: var(--ff-display);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.cover-card p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.8;
}

/* ── Gallery square grid ── */
.wedding-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.wedding-gallery__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.wedding-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.wedding-gallery__item:hover img { transform: scale(1.07); }
.wedding-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
}
.wedding-gallery__item:hover::after { background: rgba(0,0,0,0.18); }
/* Remove tall/wide modifiers - all cells are now uniform squares */
.wedding-gallery__item--tall { grid-row: unset; }
.wedding-gallery__item--wide { grid-column: unset; }

/* ── Process steps ── */
.wedding-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 64px;
}
.wedding-process::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), var(--clr-border), transparent);
}
.wprocess-step { text-align: center; }
.wprocess-step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--clr-gold);
  background: var(--clr-bg);
  position: relative;
  z-index: 1;
  transition: background 0.35s, color 0.35s, box-shadow 0.35s;
}
.wprocess-step:hover .wprocess-step__num {
  background: var(--clr-gold);
  color: var(--clr-bg);
  box-shadow: 0 0 24px rgba(212,176,106,0.4);
}
.wprocess-step h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.wprocess-step p {
  font-size: 0.79rem;
  color: var(--clr-muted);
  line-height: 1.68;
}

/* ── Testimonial highlight ── */
.wedding-quote {
  background: linear-gradient(135deg, #c9973a 0%, var(--clr-gold) 50%, #b8862b 100%);
  padding: clamp(60px,8vw,100px) 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wedding-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wedding-quote blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-bg);
  max-width: 880px;
  margin: 0 auto 28px;
  line-height: 1.58;
  position: relative;
}
.wedding-quote blockquote::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 0.5;
  opacity: 0.22;
  position: absolute;
  top: 0;
  left: -12px;
}
.wedding-quote cite {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,8,0.62);
  font-style: normal;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .wedding-process { grid-template-columns: repeat(3,1fr); }
  .wedding-process::before { display: none; }
}
@media (max-width: 900px) {
  .wedding-gallery { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .wedding-gallery__item--tall,
  .wedding-gallery__item--wide { grid-row: span 1; grid-column: span 1; }
  .wedding-gallery__item { height: 240px; }
}
@media (max-width: 768px) {
  .wedding-hero::before { display: none; }
  .wedding-intro { grid-template-columns: 1fr; }
  .wedding-intro__visual { min-height: 360px; }
  .wedding-intro__copy { padding: 52px 28px; }
  .wedding-covers { grid-template-columns: 1fr 1fr; }
  .wedding-process { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .wedding-gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .wedding-gallery__item { height: 180px; aspect-ratio: unset; }
  .wedding-process { grid-template-columns: 1fr; }
  .wedding-covers { grid-template-columns: 1fr; }
}

/* ── WhatsApp CTA strip ── */
.wa-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  padding: clamp(18px,3vw,26px) clamp(20px,4vw,40px);
  margin: clamp(30px,5vw,50px) 0;
}
.wa-cta-strip p {
  font-size: var(--text-base);
  color: var(--clr-text);
  line-height: 1.5;
  margin: 0;
}
.wa-cta-strip strong { color: var(--clr-white); }

img { max-width: 100%; height: auto; display: block; }
.cover-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ── Wedding page: ensure hamburger visible on mobile ── */
@media (max-width: 768px) {
  /* Hide social icons on mobile to free space for hamburger */
  .navbar .navbar__social-icons { display: none !important; }
  /* Ensure hamburger is always visible and tappable */
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    min-width: 34px;
    padding: 8px 6px;
    cursor: pointer;
  }
  /* Keep sub-brand compact */
  .navbar__sub-brand .sub-brand__name {
    font-size: 0.62rem !important;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  /* On very small screens hide WhatsApp nav button */
  .navbar .navbar__wa { display: none !important; }
  /* Hide sub-brand on tiny screens */
  .navbar__brand-group .navbar__sub-brand { display: none !important; }
}

/* ── Skeleton shimmer for gallery images loading ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.wedding-gallery__item img {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}
.wedding-gallery__item img.loaded {
  animation: none;
  background: none;
}
