/* Ceremony image presentation system
   Uses photos as visible design elements instead of faded wallpaper. */

.ceremony-visual-hero {
  padding: clamp(62px, 8vw, 104px) 0;
}

.ceremony-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.ceremony-hero-copy {
  max-width: 680px;
}

.ceremony-hero-copy p:last-child {
  margin-bottom: 0;
}

.ceremony-photo-card {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.32);
  box-shadow: 0 24px 58px rgba(31, 31, 31, 0.16);
}

.ceremony-photo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.ceremony-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.ceremony-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 31, 31, 0.78);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.45;
  backdrop-filter: blur(6px);
}

.ceremony-moment-section {
  padding: 74px 0;
  background: var(--white);
}

.ceremony-moment-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--ivory);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.07);
}

.ceremony-moment-image {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 18px 38px rgba(31, 31, 31, 0.14);
}

.ceremony-moment-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.ceremony-moment-copy h2 {
  margin-bottom: 14px;
}

.ceremony-moment-copy p {
  color: var(--muted);
}

.ceremony-moment-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ceremony-moment-list li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
  line-height: 1.55;
}

.ceremony-moment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .ceremony-hero-grid,
  .ceremony-moment-card {
    grid-template-columns: 1fr;
  }

  .ceremony-photo-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .ceremony-photo-card img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 620px) {
  .ceremony-photo-card figcaption {
    position: static;
    border-radius: 0;
    background: var(--charcoal);
  }

  .ceremony-photo-card::before {
    display: none;
  }

  .ceremony-moment-section {
    padding: 48px 0;
  }

  .ceremony-moment-card {
    padding: 18px;
    border-radius: 22px;
  }
}

/* Services page image section */

.services-image-feature {
  padding: 76px 0;
  background: var(--white);
}

.services-image-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--ivory);
  box-shadow: 0 20px 50px rgba(31, 31, 31, 0.08);
}

.services-image-copy {
  max-width: 680px;
}

.services-image-copy h2 {
  margin-bottom: 16px;
}

.services-image-copy p {
  color: var(--muted);
}

.services-image-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.services-image-points li {
  position: relative;
  padding-left: 26px;
  color: var(--charcoal);
  line-height: 1.55;
}

.services-image-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.services-image-frame {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(31, 31, 31, 0.16);
  background: var(--charcoal);
}

.services-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.services-image-frame figcaption {
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(31, 31, 31, 0.98), rgba(47, 47, 47, 0.96));
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.01em;
  border-top: 3px solid var(--gold);
}

@media (max-width: 900px) {
  .services-image-card {
    grid-template-columns: 1fr;
  }

  .services-image-frame {
    max-width: 560px;
    margin: 0 auto;
  }

  .services-image-frame img {
    aspect-ratio: 16 / 11;
  }

  .services-image-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .services-image-feature {
    padding: 52px 0;
  }

  .services-image-card {
    padding: 18px;
    border-radius: 22px;
  }

  .services-image-frame {
    border-radius: 20px;
  }

  .services-image-frame figcaption {
    font-size: 0.96rem;
    padding: 15px 16px;
  }
}

/* Home page ceremony image feature */

.home-ceremony-feature {
  padding: 76px 0;
  background: var(--white);
}

.home-ceremony-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--ivory);
  box-shadow: 0 20px 50px rgba(31, 31, 31, 0.08);
}

.home-ceremony-copy {
  max-width: 680px;
}

.home-ceremony-copy h2 {
  margin-bottom: 16px;
}

.home-ceremony-copy p {
  color: var(--muted);
}

.home-ceremony-frame {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(31, 31, 31, 0.16);
  background: var(--charcoal);
}

.home-ceremony-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.home-ceremony-frame figcaption {
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(31, 31, 31, 0.98), rgba(47, 47, 47, 0.96));
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.01em;
  border-top: 3px solid var(--gold);
}

@media (max-width: 900px) {
  .home-ceremony-card {
    grid-template-columns: 1fr;
  }

  .home-ceremony-frame {
    max-width: 620px;
    margin: 0 auto;
  }

  .home-ceremony-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .home-ceremony-feature {
    padding: 52px 0;
  }

  .home-ceremony-card {
    padding: 18px;
    border-radius: 22px;
  }

  .home-ceremony-frame {
    border-radius: 20px;
  }

  .home-ceremony-frame figcaption {
    font-size: 0.96rem;
    padding: 15px 16px;
  }
}

/* Ceremony Styles page visual band */

.styles-ceremony-band {
  padding: 76px 0;
  background: var(--white);
}

.styles-band-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--ivory);
  box-shadow: 0 20px 50px rgba(31, 31, 31, 0.08);
}

.styles-band-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.14);
}

.styles-band-image img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.styles-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 8px 0;
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.styles-band-copy h2 {
  margin-bottom: 14px;
  line-height: 1.12;
}

.styles-band-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.styles-band-note {
  margin: 22px auto 0;
  padding: 18px 22px;
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  max-width: 560px;
}

.styles-band-note p {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.5;
}

.styles-style-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.styles-style-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .styles-band-card {
    grid-template-columns: 1fr;
  }

  .styles-band-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .styles-band-image img {
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .styles-ceremony-band {
    padding: 52px 0;
  }

  .styles-band-card {
    border-radius: 22px;
  }

  .styles-band-copy {
    padding: 24px 20px;
  }

  .styles-band-note {
    padding: 18px 18px;
  }

  .styles-band-note p {
    font-size: 1rem;
  }
}

/* Marriage License Guide practical feature */

.license-practical-feature {
  padding: 34px 0 12px;
  background: var(--white);
}

.license-practical-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ivory);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.06);
}

.license-practical-image {
  width: 128px;
  height: 128px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.12);
}

.license-practical-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.license-practical-copy {
  min-width: 0;
}

.license-practical-copy .eyebrow {
  margin-bottom: 4px;
}

.license-practical-copy h2 {
  margin: 2px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.license-practical-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .license-practical-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .license-practical-image {
    width: 132px;
    height: 132px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .license-practical-feature {
    padding: 28px 0 8px;
  }

  .license-practical-card {
    border-radius: 18px;
  }

  .license-practical-image {
    width: 116px;
    height: 116px;
  }
}

/* Shared top navigation simplification */

.main-nav a[href="helpful-links.html"],
.main-nav a[href="about.html"] {
  display: none;
}

.main-nav a[href="services.html"],
.main-nav a[href="ceremony-styles.html"],
.main-nav a[href="marriage-license-guide.html"],
.main-nav a.nav-button {
  font-size: 0;
}

.main-nav a[href="services.html"]::after,
.main-nav a[href="ceremony-styles.html"]::after,
.main-nav a[href="marriage-license-guide.html"]::after,
.main-nav a.nav-button::after {
  font-size: 0.95rem;
}

.main-nav a[href="services.html"]::after {
  content: "Services";
}

.main-nav a[href="ceremony-styles.html"]::after {
  content: "Ceremony Options";
}

.main-nav a[href="marriage-license-guide.html"]::after {
  content: "License Guide";
}

.main-nav a.nav-button::after {
  content: "Schedule Consultation";
}
