/* ══════════════════════════════════════════════
   SUBPAGE STYLES — Weddings & Other Services
   ══════════════════════════════════════════════ */

/* Active nav link */
.nav-active {
  color: var(--gold) !important;
}

/* ── Subpage Hero ── */
.subpage-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 24px 80px;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.subpage-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.subpage-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.subpage-hero-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Intro Section ── */
.subpage-intro {
  background: var(--dark-alt);
  padding: 90px 24px;
}

.subpage-dark {
  background: var(--black);
}

.subpage-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.subpage-intro-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subpage-intro-inner h2 em {
  font-style: italic;
  color: var(--gold);
}

.subpage-intro-inner > p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 700px;
}

/* ── Services Grid ── */
.subpage-services {
  background: var(--black);
  padding: 90px 24px;
}

.subpage-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.subpage-services-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.subpage-services-inner h2 em {
  font-style: italic;
  color: var(--gold);
}

.subpage-services-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 56px;
  font-weight: 300;
}

.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-service-card {
  background: var(--dark-alt);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

.sp-service-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.sp-service-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.sp-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sp-service-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sp-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-service-list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-service-list li::before {
  content: '✦';
  font-size: 7px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Dark intro section cards */
.subpage-intro .sp-service-card {
  background: var(--smoke);
  border-color: rgba(255,255,255,0.06);
}

.subpage-intro .sp-service-card h3 {
  color: var(--cream);
}

.subpage-intro .sp-service-card p {
  color: var(--text-light);
}

.subpage-intro .sp-service-list li {
  color: var(--text-mid);
  border-top-color: rgba(255,255,255,0.05);
}

/* ── Section Divider ── */
.sp-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin: 0;
}

/* ── CTA Section ── */
.subpage-cta {
  background: var(--dark-alt);
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.subpage-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.subpage-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.subpage-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.subpage-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════
   WEDDING PAGE SECTIONS
   ══════════════════════════════════════════════ */

/* ── What to Expect ── */
.w-expect {
  background: var(--dark);
  padding: 90px 24px;
}

.w-expect-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.w-expect-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.w-expect-inner h2 em { font-style: italic; color: var(--gold); }

.w-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.w-expect-card {
  background: var(--dark-alt);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.w-expect-card:hover { border-color: rgba(201,168,76,0.3); }

.w-expect-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.w-expect-body {
  padding: 28px;
}

.w-expect-icon {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.w-expect-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.w-expect-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Our Approach ── */
.w-approach {
  background: var(--black);
  padding: 90px 24px;
}

.w-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.w-approach-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.w-approach-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.w-approach-text h2 em { font-style: italic; color: var(--gold); }

.w-approach-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.w-approach-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.w-approach-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.w-approach-list li::before {
  content: '✦';
  font-size: 8px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── What We Offer (features grid) ── */
.w-features {
  background: var(--dark-alt);
  padding: 90px 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.w-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.w-features-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.w-features-inner h2 em { font-style: italic; color: var(--gold); }

.w-features-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

.w-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.w-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}

.w-feature-check {
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Services ── */
.w-services {
  background: var(--black);
  padding: 90px 24px;
}

.w-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.w-services-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.w-services-inner h2 em { font-style: italic; color: var(--gold); }

.w-services-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ── Gallery ── */
.w-gallery {
  background: var(--dark);
  padding: 90px 24px;
}

.w-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.w-gallery-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 36px;
}

.w-gallery-inner h2 em { font-style: italic; color: var(--gold); }

.w-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.w-gallery-item {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.w-gallery-item:hover { transform: scale(1.02); }

/* ── FAQ ── */
.w-faq {
  background: var(--dark-alt);
  padding: 90px 24px;
}

.w-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.w-faq-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.w-faq-inner h2 em { font-style: italic; color: var(--gold); }

.w-faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.w-faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

.w-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
  gap: 20px;
  transition: color 0.2s ease;
}

.w-faq-q:hover { color: var(--gold); }

.w-faq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.w-faq-item.open .w-faq-icon { transform: rotate(45deg); }

.w-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.w-faq-item.open .w-faq-a { max-height: 300px; }

.w-faq-a p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  padding-bottom: 22px;
}

/* ── Section Banner ── */
.sp-section-banner {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .w-expect-grid { grid-template-columns: 1fr; }
  .w-approach-inner { grid-template-columns: 1fr; gap: 40px; }
  .w-approach-photo img { height: 360px; }
  .w-features-grid { grid-template-columns: repeat(2, 1fr); }
  .w-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero-content h1 { font-size: 52px; }
  .w-expect-inner h2,
  .w-approach-text h2,
  .w-features-inner h2,
  .w-services-inner h2,
  .w-gallery-inner h2,
  .w-faq-inner h2,
  .subpage-intro-inner h2,
  .subpage-services-inner h2 { font-size: 40px; }
  .subpage-cta h2 { font-size: 44px; }
}

@media (max-width: 600px) {
  .sp-services-grid { grid-template-columns: 1fr; }
  .w-features-grid { grid-template-columns: 1fr; }
  .w-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero-content h1 { font-size: 38px; }
  .w-expect-inner h2,
  .w-approach-text h2,
  .w-features-inner h2,
  .w-services-inner h2,
  .w-gallery-inner h2,
  .w-faq-inner h2,
  .subpage-intro-inner h2,
  .subpage-services-inner h2 { font-size: 32px; }
  .subpage-cta h2 { font-size: 34px; }
  .sp-service-card h3 { font-size: 24px; }
  .w-faq-q { font-size: 18px; }
}
