/* ==========================================================================
   WEDDINGS PAGE
   Centered hero, intro pull-quote, ensemble grid.
   Feature-row and photo-strip live in components.css.
   ========================================================================== */

/* HERO ------------------------------------------------------------------- */
.hero {
  min-height: 90vh;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(92, 42, 47, 0.25), transparent 60%),
    linear-gradient(135deg, #1A1D24 0%, #2A1F1A 100%);
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background:
    linear-gradient(270deg, rgba(14, 16, 20, 1) 0%, rgba(14, 16, 20, 0.15) 25%, rgba(14, 16, 20, 0) 50%),
    linear-gradient(180deg, rgba(14, 16, 20, 0.25) 0%, rgba(14, 16, 20, 0) 30%, rgba(14, 16, 20, 0.45) 100%),
    url('../images/portraits/stephen-scaccia-portrait-silver-wall.jpg');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.95;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 48px 100px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-photo { z-index: 1; }
.hero .hero-decor { z-index: 2; }
.hero-content {
  max-width: 540px;
}
.hero-eyebrow { color: var(--gold); display: inline-block; margin-bottom: 24px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-tagline {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.85);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* INTRO PARAGRAPH ------------------------------------------------------- */
.intro-paragraph {
  background: var(--cream);
  padding: 100px 48px 60px;
}
.intro-paragraph-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro-paragraph p {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.intro-paragraph p em { color: var(--gold-deep); }

/* ENSEMBLE OPTIONS ----------------------------------------------------- */
.ensembles { background: var(--cream-warm); }
.ensemble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ensemble {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}
.ensemble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.ensemble:hover {
  transform: translateY(-8px);
  border-color: var(--gold-deep);
  box-shadow: 0 24px 50px rgba(14, 16, 20, 0.12);
}
.ensemble:hover::before { transform: scaleX(1); }
.ensemble:hover .ensemble-num { color: var(--gold); }
.ensemble-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.ensemble h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}
.ensemble p { font-size: 14px; line-height: 1.6; }
.ensemble-detail {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s;
}

/* PROCESS (dark band) -------------------------------------------------- */
.process {
  background: linear-gradient(135deg, #0E1014 0%, #1A1D24 100%);
  color: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { display: flex; flex-direction: column; gap: 16px; }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.65);
}

/* TESTIMONIALS / FAQ surrounds */
.testimonials { background: var(--cream-warm); }
.faq { background: var(--cream); }

/* MOBILE ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-photo {
    left: 0; right: 0;
    width: 100%;
    opacity: 0.45;
    background:
      linear-gradient(180deg, rgba(14, 16, 20, 0.4) 0%, rgba(14, 16, 20, 0.2) 30%, rgba(14, 16, 20, 0.85) 100%),
      url('../images/portraits/stephen-scaccia-portrait-silver-wall.jpg');
    background-size: cover;
    background-position: center 25%;
  }
  .hero-inner { padding: 130px 24px 80px; justify-content: flex-start; }
  .hero-content { max-width: 100%; }
  .intro-paragraph { padding: 60px 24px 40px; }
  .ensemble-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
