/* ============================================================
   WEDDING CHAPTER — Megan & Jason · Ravello 2018
   Cinematic, romantic, film-textured
   Carries the main site's type system; softened palette for Amalfi
   ============================================================ */

/* ─── WEDDING PALETTE OVERRIDES ─── */
:root {
  --ivory:    #F8F3E9;
  --stone:    #E3D9CB;
  --sea:      #2F5D92;
  --charcoal: #2E3138;
  --ink:      #2E3138;
  --ink-60:   rgba(46,49,56,.6);
  --ink-30:   rgba(46,49,56,.25);
  --teal:     #0E5A53;
  --teal-10:  rgba(14,90,83,.10);
  --paper:    #F8F3E9;
  --white:    #ffffff;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: soft-light;
  opacity: .4;
}

/* ─── GATE ─── */
.gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}

.gate-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gate-bg picture,
.gate-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}

.gate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,49,56,.55) 0%, rgba(46,49,56,.75) 100%);
}

.gate-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  max-width: 480px;
}

.gate-monogram {
  width: 80px;
  height: auto;
  margin-bottom: 32px;
  opacity: .9;
}

.gate-names {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 8px;
}

.gate-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,243,233,.45);
  margin-bottom: 40px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.gate-input {
  background: rgba(248,243,233,.08);
  border: 1px solid rgba(248,243,233,.25);
  color: var(--ivory);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  text-align: center;
  letter-spacing: .1em;
  width: 100%;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.gate-input::placeholder { color: rgba(248,243,233,.3); }
.gate-input:focus { border-color: rgba(248,243,233,.6); }

.gate-btn {
  background: transparent;
  border: 1.5px solid rgba(248,243,233,.4);
  color: var(--ivory);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.gate-btn:hover {
  background: rgba(248,243,233,.12);
  border-color: rgba(248,243,233,.7);
}

.gate-btn:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 3px;
}

.gate-error {
  font-size: 12px;
  color: rgba(248,243,233,.45);
  letter-spacing: .08em;
  height: 16px;
  min-height: 16px;
}

/* ─── CHAPTER REVEAL ─── */
.chapter {
  display: none;
  background: var(--ivory);
  color: var(--charcoal);
}

.chapter.unlocked { display: block; }

/* ─── WEDDING NAV ─── */
.wedding-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s;
}

.wedding-nav.scrolled {
  background: rgba(248,243,233,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(46,49,56,.1);
}

.wedding-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--charcoal);
  text-decoration: none;
}

.back-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.back-link:hover { color: var(--teal); }

/* ─── WEDDING HERO ─── */
.wedding-hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.wedding-hero-bg {
  position: absolute;
  inset: 0;
}

.wedding-hero-bg picture,
.wedding-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.wedding-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,49,56,.7) 0%, rgba(46,49,56,.15) 60%);
}

.wedding-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  color: var(--ivory);
}

.wedding-hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,243,233,.55);
  margin-bottom: 16px;
  display: block;
}

.wedding-hero-names {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .04em;
  margin-bottom: 24px;
  overflow: hidden;
}

.wedding-hero-names .name-line {
  display: block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), opacity .8s;
}

.wedding-hero-names .name-line.animate-in {
  transform: translateY(0);
  opacity: 1;
}

.wedding-hero-names .name-line:nth-child(2) {
  transition-delay: .15s;
}

.wedding-hero-meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(248,243,233,.6);
  display: flex;
  align-items: center;
  gap: 12px;
}

.wedding-hero-meta span { opacity: .35; }

@media (prefers-reduced-motion: reduce) {
  .wedding-hero-names .name-line {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 640px) {
  .wedding-hero-content { padding: 60px 24px; }
}

/* ─── SHARED WEDDING SECTION ─── */
.w-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 100px);
}

.w-container {
  max-width: 860px;
  margin: 0 auto;
}

.w-container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.w-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}

.w-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.w-body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-60);
  line-height: 1.78;
  margin-bottom: 20px;
}

.w-body strong { color: var(--charcoal); font-weight: 600; }

/* ─── FULL-BLEED IMAGE ─── */
.w-full-bleed {
  width: 100%;
  overflow: hidden;
}

.w-full-bleed picture,
.w-full-bleed img {
  width: 100%;
  height: clamp(400px, 65vh, 800px);
  object-fit: cover;
  display: block;
}

/* ─── DIPTYCH ─── */
.w-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: clamp(40px, 5vw, 80px) 0;
}

.w-diptych picture,
.w-diptych img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.w-diptych.landscape picture,
.w-diptych.landscape img {
  aspect-ratio: 4/3;
}

@media (max-width: 600px) {
  .w-diptych { grid-template-columns: 1fr; }
  .w-diptych picture, .w-diptych img { aspect-ratio: 3/2; }
}

/* ─── PROPOSAL SECTION ─── */
.proposal-section { background: var(--ivory); }

.proposal-quotes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.w-quote {
  border-left: 2px solid var(--teal);
  padding: 20px 28px;
  background: rgba(14,90,83,.04);
}

.w-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
}

/* ─── VOWS ─── */
.vows-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.vows-section .w-label { color: rgba(248,243,233,.4); }
.vows-section .w-heading { color: var(--ivory); }

.vows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 60px;
}

.vow-block {}

.vow-speaker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: block;
  border-bottom: 1px solid rgba(248,243,233,.1);
  padding-bottom: 12px;
}

.vow-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(248,243,233,.82);
}

.vow-text p { margin-bottom: 18px; }

.vow-text .vow-salutation {
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 24px;
  font-size: clamp(18px, 2.2vw, 22px);
}

.vow-text .vow-signature {
  font-style: italic;
  color: rgba(248,243,233,.5);
  margin-top: 24px;
  font-size: 15px;
}

.vow-promises {
  margin: 20px 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.vow-promises li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(248,243,233,.06);
  color: rgba(248,243,233,.75);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  font-style: italic;
}

.vow-promises li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .6;
}

@media (max-width: 768px) {
  .vows-grid { grid-template-columns: 1fr; }
}

/* ─── CEREMONY ─── */
.ceremony-section { background: var(--ivory); }

.order-of-service {
  border: 1px solid var(--stone);
  padding: clamp(24px, 4vw, 60px);
  max-width: 640px;
  margin: 40px auto;
}

.oos-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .06em;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.oos-names {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .06em;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.oos-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: center;
  margin-bottom: 32px;
}

.oos-divider {
  height: 1px;
  background: var(--stone);
  margin: 20px 0;
}

.oos-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46,49,56,.07);
}

.oos-item:last-child { border-bottom: none; }

.oos-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}

.oos-item-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--charcoal);
}

.oos-item-text em {
  color: var(--ink-60);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
}

/* Reading box */
.reading-box {
  background: rgba(14,90,83,.04);
  border-left: 3px solid var(--teal);
  padding: 32px 36px;
  margin: 40px 0;
  max-width: 640px;
}

.reading-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.reading-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
}

.blessing-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.85;
  color: var(--charcoal);
  font-style: italic;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 32px 0;
  margin: 40px 0;
}

/* Wedding Party */
.wedding-party-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.party-card {
  border: 1px solid var(--stone);
  padding: 24px;
}

.party-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.party-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.party-name span {
  font-weight: 400;
  color: var(--ink-60);
}

.in-memoriam {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(46,49,56,.04);
  border-top: 2px solid var(--charcoal);
}

.in-memoriam-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
  display: block;
}

.in-memoriam-names {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 8px;
}

.in-memoriam-sentiment {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-60);
}

/* ─── THE WEEKEND ─── */
.weekend-section { background: var(--stone); }

.weekend-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.weekend-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(46,49,56,.12);
}

.weekend-item:last-child { border-bottom: none; }

.weekend-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
  line-height: 1.4;
}

.weekend-event {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
}

.weekend-detail {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .weekend-item { grid-template-columns: 1fr; gap: 6px; }
}

/* Venue cards */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.venue-card {
  position: relative;
  overflow: hidden;
}

.venue-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.venue-card picture,
.venue-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.venue-card-body {
  padding: 20px;
  background: var(--ivory);
}

.venue-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.venue-card-desc {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ─── THE TABLE / MENU ─── */
.table-section { background: var(--ivory); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.menu-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 12px;
}

.menu-course {
  margin-bottom: 24px;
}

.menu-course-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
  display: block;
}

.menu-course-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 4px;
}

.menu-wine {
  font-size: 12px;
  color: var(--ink-60);
  font-style: italic;
}

.cocktail-card {
  border: 1px solid var(--stone);
  padding: 24px;
  margin-bottom: 16px;
}

.cocktail-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.cocktail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.cocktail-desc {
  font-size: 14px;
  color: var(--ink-60);
}

@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--charcoal);
  padding: clamp(60px, 8vw, 120px) clamp(12px, 3vw, 40px);
}

.gallery-section .w-label { color: rgba(248,243,233,.4); }
.gallery-section .w-heading { color: var(--ivory); }

.gallery-grid {
  columns: 3;
  column-gap: 10px;
  margin-top: 48px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
}

.gallery-item:hover picture,
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,12,18,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90svh;
}

.lightbox-img-wrap picture,
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88svh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.lightbox-btn {
  position: fixed;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(248,243,233,.7);
  padding: 16px;
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover { color: var(--ivory); }
.lightbox-btn:focus-visible { outline: 2px solid var(--ivory); outline-offset: 3px; }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-btn svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─── GRATITUDE / CREDITS ─── */
.gratitude-section { background: var(--ivory); }

.vendor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.vendor-item {}

.vendor-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}

.vendor-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
}

/* ─── WEDDING FOOTER ─── */
.wedding-footer {
  background: var(--charcoal);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.wedding-footer-copy {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(248,243,233,.35);
}

.wedding-footer a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,243,233,.3);
  text-decoration: none;
  transition: color .2s;
}

.wedding-footer a:hover { color: var(--teal); }

/* ─── AMBIENT MUSIC BUTTON ─── */
.music-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 48px;
  height: 48px;
  background: rgba(46,49,56,.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(248,243,233,.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: background .2s, border-color .2s;
}

.music-btn:hover { background: rgba(46,49,56,.95); border-color: rgba(248,243,233,.4); }
.music-btn:focus-visible { outline: 2px solid var(--ivory); outline-offset: 3px; }
.music-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─── REDUCED MOTION OVERRIDES ─── */
@media (prefers-reduced-motion: reduce) {
  .wedding-hero-bg picture,
  .wedding-hero-bg img {
    animation: none;
  }
  .gallery-item:hover picture,
  .gallery-item:hover img {
    transform: none;
  }
}

/* ─── WEDDING REVEAL ─── */
.w-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}

.w-reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .w-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
