/* micro-weddings-page.css — Micro Weddings only */

.micro-packages {
  padding: var(--section-pad) var(--side-pad);
  background: linear-gradient(180deg, rgba(246, 242, 236, 0.96) 0%, rgba(255, 255, 255, 0.99) 100%);
  border-top: 1px solid var(--warm-border);
}

.micro-packages-header {
  max-width: min(52ch, calc(100vw - 40px));
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.micro-packages-header .section-title {
  max-width: 11ch;
  margin-inline: auto;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.micro-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 50px) clamp(24px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff 100%);
  border: 1px solid rgba(198, 162, 90, 0.22);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(28, 25, 22, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.micro-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(198, 162, 90, 0.92), transparent);
  opacity: 0.75;
}

.micro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(28, 25, 22, 0.10);
}

.micro-card.featured {
  border-color: rgba(198, 162, 90, 0.72);
  box-shadow: 0 28px 72px rgba(28, 25, 22, 0.12);
}

.micro-badge {
  align-self: flex-start;
  margin: 4px 0 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(198, 162, 90, 0.24);
}

.micro-card-name {
  font-size: clamp(1.85rem, 2.8vw, 2.2rem);
  line-height: 1.02;
  margin-bottom: 10px;
}

.micro-card-sub {
  font-size: 0.98rem;
  max-width: 24ch;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.micro-price {
  font-size: clamp(3rem, 4.6vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 6px;
}

.micro-price-note {
  margin: 0 0 24px;
}

.micro-features {
  gap: 11px;
  margin-bottom: 34px;
  flex: 1;
}

.micro-features li {
  font-size: 0.92rem;
  line-height: 1.62;
}

.micro-card-cta {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border-radius: 999px;
  letter-spacing: 0.16em;
}

.micro-card.featured .micro-card-cta,
.micro-card-cta:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.phil-img {
  overflow: hidden;
  border-radius: 20px;
  background: var(--ivory-deep);
}

.phil-img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* Editorial crops: couple / detail / wide landscape */
body[data-page="micro-weddings"] .phil-img:first-child img {
  object-position: 48% 42%;
}
body[data-page="micro-weddings"] .phil-img:nth-child(2) img {
  object-position: 52% 46%;
}
body[data-page="micro-weddings"] .phil-img:last-child img {
  object-position: center 44%;
}

.phil-img:first-child img {
  aspect-ratio: 4 / 4.4;
  height: auto;
}

.phil-img:nth-child(2) img {
  aspect-ratio: 4 / 4.4;
  height: auto;
}

.phil-img:last-child {
  grid-column: span 2;
}

.phil-img:last-child img {
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (max-width: 768px) {
  .micro-card {
    padding: clamp(32px, 6vw, 44px) clamp(22px, 5vw, 30px);
  }

  .micro-packages-header {
    margin-bottom: clamp(36px, 7vw, 52px);
  }
}
