/* ==========================================================================
   Joe & Rossella Wedding – Static Site Styles
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #404040; color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem; line-height: 1.5; }
img { max-width: 100%; height: auto; border-style: none; }
a { background-color: transparent; }

/* ==========================================================================
   Reveal System
   ========================================================================== */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 2.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 2.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--up    { transform: translateY(24px); }
.reveal--down  { transform: translateY(-24px); }
.reveal--left  { transform: translateX(24px); }
.reveal--right { transform: translateX(-24px); }
.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.35s; }
.reveal[data-delay="3"] { transition-delay: 0.55s; }
.reveal[data-delay="4"] { transition-delay: 0.75s; }
.reveal.reveal--slow { transition-duration: 3.4s, 3.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   Menu Bar (Sticky Header)
   ========================================================================== */
.w-menu {
  position: fixed; inset: 0 0 auto 0;
  z-index: 9999; pointer-events: none;
}
.w-menu.is-visible { pointer-events: auto; }

.w-menu__bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(64, 64, 64, 0.12);
  height: 72px; display: flex; align-items: center;
  transform: translateY(-110%); opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.w-menu.is-visible .w-menu__bar { transform: translateY(0); opacity: 1; }

.w-menu__brand {
  color: #404040; text-decoration: none;
  font-family: 'Gilda Display', serif; font-size: 18pt;
  display: inline-flex; align-items: center;
}
.w-menu__brand:hover,
.w-menu__brand:focus-visible { color: #404040; text-decoration: none; }
.w-menu__logo { height: 40px; width: auto; display: block; }

.w-menu__toggle {
  background: transparent; border: 0;
  padding: 10px; border-radius: 999px; cursor: pointer;
}
.w-burger {
  width: 26px; height: 18px;
  display: inline-flex; flex-direction: column; justify-content: space-between;
}
.w-burger span {
  height: 2px; width: 100%; background: #404040; border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay */
.w-menu__overlay {
  position: fixed; inset: 0;
  background: #ffffff; color: #404040; overflow: hidden; z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.w-menu.is-open .w-menu__overlay { transform: translateY(0); }

.w-menu__overlayInner {
  height: 100%; display: flex; flex-direction: column;
}
.w-menu__close {
  background: transparent; border: 0;
  padding: 10px; border-radius: 999px; cursor: pointer;
}
.w-close {
  width: 22px; height: 22px;
  position: relative; display: inline-block;
}
.w-close::before,
.w-close::after {
  content: ""; position: absolute;
  inset: 50% auto auto 50%;
  width: 22px; height: 2px; background: #404040;
  transform-origin: center;
}
.w-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.w-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.w-menu__nav {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.w-menu__list {
  list-style: none; padding: 0; margin: 0;
  text-align: center; font-family: 'Gilda Display', serif;
}
.w-menu__list li { margin: 18px 0; }
.w-menu__list a,
.w-menu__list a:visited {
  color: #404040; text-decoration: none;
  font-size: clamp(26pt, 5vw, 44pt); line-height: 1.1;
  transition: opacity 0.4s ease;
}
.w-menu__list a:hover,
.w-menu__list a:focus-visible { opacity: 0.65; text-decoration: none; }

body.w-menu-lock { overflow: hidden; }

/* Language Switcher */
.w-menu__lang-switcher { position: relative; top: 5px; display: flex; align-items: center; }
.w-lang-toggle {
  background: transparent; border: 0; padding: 0;
  cursor: pointer; display: flex; align-items: center;
  transition: opacity 0.3s ease;
}
.w-lang-toggle:hover { opacity: 0.75; }
.w-lang-flag {
  display: block; width: 32px; height: 22px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border-radius: 2px;
}
.w-lang-dropdown {
  position: absolute; top: 100%; left: -6px; margin-top: 6px;
  background: #ffffff; border: 1px solid rgba(64, 64, 64, 0.12);
  border-radius: 4px; padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.w-lang-dropdown[aria-hidden="false"] {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.w-lang-option {
  display: block; padding: 0;
  transition: opacity 0.3s ease; text-decoration: none;
}
.w-lang-option:hover { opacity: 0.75; }

/* ==========================================================================
   Hero Section (Home)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background image with Ken Burns slow zoom */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/home-hero-bg-3-scaled.jpg');
  background-size: cover; background-position: center bottom;
  background-repeat: no-repeat;
  animation: heroZoom 60s ease-out forwards;
  will-change: transform;
}

/* Vignette overlay — draws focus to centre & helps logo contrast */
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 30%);
  pointer-events: none;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@media (max-width: 576px) {
  .hero-section::before {
    background-image: url('../images/mobile-hero-bg.png');
    background-position: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before { animation: none; }
}

.hero-inner {
  min-height: 100vh; display: flex; align-items: flex-start;
  position: relative; z-index: 1;
}
.hero-logo-wrap {
  padding-top: clamp(120px, 14vh, 220px);
  padding-left: clamp(24px, 8vw, 220px);
}
.hero-logo {
  width: min(520px, 78vw); height: auto; display: block;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.15));
}
@media (max-width: 576px) {
  .hero-logo-wrap { padding-top: clamp(72px, 10vh, 120px); padding-left: 24px; }
  .hero-logo { width: min(360px, 80vw); }
}

/* Hero date — centred above scroll text */
.hero-date {
  font-family: 'Lato', sans-serif;
  font-size: 10pt;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: clamp(24px, 4vh, 48px);
  left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; opacity: 0;
  animation: heroScrollFadeIn 1s 2.5s ease forwards;
}
.hero-scroll__text {
  font-family: 'Lato', sans-serif;
  font-size: 9pt; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}
.hero-scroll__arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: heroPulse 3s ease-in-out infinite;
}
@keyframes heroScrollFadeIn {
  to { opacity: 1; }
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ==========================================================================
   Invite / Story Section
   ========================================================================== */
.story-section { background-color: #f2eeeb; font-family: 'Gilda Display', serif; }
.story-inner { max-width: 720px; }
.story-motif-top,
.story-motif-bottom {
  width: 200px; height: auto; display: block;
  margin-left: auto; margin-right: auto;
}
.story-hearts { width: 30px; height: auto; display: inline-block; }
.story-circle { width: 120px; height: auto; display: inline-block; }
.story-motif-top { margin-bottom: 80px; }
.story-motif-bottom { margin-top: 80px; }
@media (min-width: 768px) {
  .story-motif-top { margin-bottom: 120px; }
  .story-motif-bottom { margin-top: 120px; }
}
.story-date { font-weight: 700; letter-spacing: 0.5px; }
.story-lead,
.story-close { font-size: clamp(16pt, 2.2vw, 22pt); line-height: 1.35; }
.story-lead { margin-bottom: 24px; }
.story-close { margin-bottom: 50px; }
.story-section a.reveal { transition-delay: 0s !important; }

/* ==========================================================================
   Timer Section
   ========================================================================== */
:root {
  --overlap-lg: 240px; --overlap-md: 170px;
  --overlap-sm: 130px; --overlap-gap: 40px;
}
.timer-section {
  position: relative; background-color: #a2b09f;
  padding-bottom: calc(var(--overlap-lg) + var(--overlap-gap));
}
.timer-inner {
  font-family: 'Gilda Display', serif; text-align: center;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(72px, 10vh, 120px);
  padding-left: clamp(16px, 6vw, 200px);
  padding-right: clamp(16px, 6vw, 200px);
}
@media (max-width: 992px) {
  .timer-section { padding-bottom: calc(var(--overlap-md) + var(--overlap-gap)); }
}
@media (max-width: 576px) {
  .timer-section { padding-bottom: calc(var(--overlap-sm) + 28px); }
}

/* Countdown */
#countdown {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px 14px;
  font-weight: 600; color: #ffffff;
  font-size: clamp(18pt, 3.2vw, 28pt);
}
#countdown .segment {
  display: inline-flex; align-items: baseline;
  gap: 6px; white-space: nowrap;
}
#countdown .divider {
  width: 1px; height: 1.2em; background: #ffffff; margin: 0 10px;
}
@media (max-width: 576px) {
  #countdown .divider { display: none; }
}

/* ==========================================================================
   Event Section
   ========================================================================== */
.event-section {
  background-image: url('../images/speckle-bg.png');
  background-repeat: repeat;
}
.event-img-wrap { transform: translateY(calc(-1 * var(--overlap-lg))); }
.event-title { margin-top: calc(-1 * (var(--overlap-lg) - 40px)); }
@media (max-width: 992px) {
  .event-img-wrap { transform: translateY(calc(-1 * var(--overlap-md))); }
  .event-title { margin-top: calc(-1 * (var(--overlap-md) - 30px)); }
}
@media (max-width: 576px) {
  .event-img-wrap { transform: translateY(calc(-1 * var(--overlap-sm))); }
  .event-title { margin-top: calc(-1 * (var(--overlap-sm) - 24px)); }
  .event-card { padding-bottom: calc(var(--overlap-sm) + 36px); }
  .event-card + .event-card { margin-top: 8px; }
}
.address-link,
.address-link:visited { color: #404040; text-decoration: none; }
.address-link:hover,
.address-link:focus-visible { color: #404040; text-decoration: underline; }

/* Ghost CTA */
.ghost-cta,
.ghost-cta:visited {
  display: inline-block; padding: 6px 64px;
  font-family: 'Gilda Display', serif;
  font-size: clamp(14pt, 2.6vw, 18pt);
  font-weight: 700; text-transform: uppercase;
  color: #404040; background-color: transparent;
  border: 2px solid #404040; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              color            0.9s cubic-bezier(0.16, 1, 0.3, 1),
              border-color     0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ghost-cta:hover,
.ghost-cta:focus-visible {
  background-color: #404040; border-color: #404040; color: #ffffff;
}
.ghost-cta:focus-visible {
  outline: none; box-shadow: 0 0 0 4px rgba(64, 64, 64, 0.25);
}
.ghost-cta.reveal { transition-delay: 0s !important; }

/* ==========================================================================
   Page Hero (Shared – Itinerary, Travel, FAQ, RSVP)
   ========================================================================== */
.page-hero {
  background: #a2b09f; min-height: 50vh;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero__inner {
  width: 100%; padding: 110px 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
@media (max-width: 768px) {
  .page-hero { min-height: 46vh; }
  .page-hero__inner { padding: 90px 0; }
}
.page-hero__title {
  color: #ffffff; font-family: 'Gilda Display', serif;
  font-weight: 400; letter-spacing: 1px; line-height: 1.05;
  margin: 0; font-size: clamp(34px, 6vw, 72px);
}
.page-hero__motif {
  width: 160px; max-width: 60%; height: auto;
  display: block; opacity: 0.85;
  margin: clamp(14px, 4vh, 40px) 0;
}
@media (max-width: 768px) {
  .page-hero__motif { width: 120px; margin: clamp(12px, 3vh, 28px) 0; }
}

/* ==========================================================================
   Timeline (Itinerary Page)
   ========================================================================== */
.timeline-section {
  background-color: #f2eeeb;
  font-family: 'Gilda Display', serif; color: #404040;
}
.timeline-wrap {
  max-width: 680px; margin: 0 auto;
  position: relative; padding: 40px 0 20px;
}
.timeline-wrap::before {
  content: ''; position: absolute;
  left: 32px; top: 40px; bottom: 20px;
  width: 2px; background: #a2b09f; opacity: 0.4;
}
@media (min-width: 769px) {
  .timeline-wrap::before { left: 50%; transform: translateX(-1px); }
}
.tl-item {
  position: relative; display: flex; align-items: flex-start;
  margin-bottom: 48px; padding-left: 72px;
}
@media (min-width: 769px) {
  .tl-item { padding-left: 0; justify-content: center; }
}
.tl-item__icon {
  position: absolute; left: 8px; top: 0;
  width: 50px; height: 50px; border-radius: 50%;
  background: #a2b09f; display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; z-index: 2; flex-shrink: 0;
}
@media (min-width: 769px) {
  .tl-item__icon {
    position: absolute; left: 50%;
    transform: translateX(-50%); top: 0;
    width: 56px; height: 56px; font-size: 24px;
  }
}
.tl-item__content { flex: 1; }
@media (min-width: 769px) {
  .tl-item__content { width: 38%; flex: none; }
  .tl-item:nth-child(odd)  .tl-item__content { margin-right: calc(50% + 52px); text-align: right; }
  .tl-item:nth-child(even) .tl-item__content { margin-left:  calc(50% + 52px); text-align: left; }
}
.tl-item__time {
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: clamp(11pt, 2vw, 13pt);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #a2b09f; margin-bottom: 4px;
}
.tl-item__title {
  font-family: 'Gilda Display', serif; font-weight: 400;
  font-size: clamp(16pt, 2.6vw, 22pt);
  margin-bottom: 6px; letter-spacing: 0.5px;
}
.tl-item__desc {
  font-family: 'Lato', sans-serif; font-size: 11.5pt;
  line-height: 1.65; opacity: 0.85;
}
.timeline-motif {
  width: 140px; height: auto; display: block;
  margin: 0 auto; opacity: 0.6;
}
@media (max-width: 768px) { .timeline-motif { width: 100px; } }

/* ==========================================================================
   Travel & Accommodation Page
   ========================================================================== */
.travel-section { font-family: 'Gilda Display', serif; color: #404040; }
.travel-section--beige { background-color: #f2eeeb; }
.travel-section--green { background-color: #a2b09f; color: #ffffff; }
.travel-section--white { background-color: #ffffff; }
.travel-section__inner { max-width: 960px; margin: 0 auto; }
.travel-intro {
  font-size: clamp(13pt, 2vw, 15pt); line-height: 1.7;
  font-family: 'Lato', sans-serif;
}
.travel-heading {
  font-family: 'Gilda Display', serif; font-weight: 400;
  letter-spacing: 1px; font-size: clamp(22pt, 4vw, 32pt);
  margin-bottom: 16px;
}
.travel-subheading {
  font-family: 'Gilda Display', serif; font-weight: 400;
  font-size: clamp(14pt, 2.4vw, 18pt); margin-bottom: 8px;
}
.transport-card {
  background: #ffffff; border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 2px 20px rgba(64, 64, 64, 0.07);
  height: 100%; display: flex; flex-direction: column;
}
.transport-card__icon { font-size: 32pt; margin-bottom: 16px; line-height: 1; }
.transport-card__title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(16pt, 2.4vw, 20pt); font-weight: 400;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.transport-card__body {
  font-family: 'Lato', sans-serif; font-size: 11.5pt;
  line-height: 1.7; flex: 1;
}
.transport-card__body ul { padding-left: 18px; margin: 12px 0; }
.transport-card__body li { margin-bottom: 6px; }
.transport-card__detail {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px; font-family: 'Lato', sans-serif; font-size: 11.5pt;
}
.transport-card__label { font-weight: 700; white-space: nowrap; min-width: 80px; }
.transport-card__tag {
  display: inline-block; background: #a2b09f; color: #ffffff;
  font-family: 'Lato', sans-serif; font-size: 9pt; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.accom-card {
  background: #ffffff; border-radius: 12px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 2px 20px rgba(64, 64, 64, 0.07);
}
.accom-card__body {
  font-family: 'Lato', sans-serif; font-size: 12pt; line-height: 1.7;
}
.accom-card__body ul { padding-left: 18px; margin: 12px 0; }
.accom-card__body li { margin-bottom: 8px; }
.travel-link,
.travel-link:visited {
  color: #404040; text-decoration: underline;
  text-underline-offset: 3px; transition: opacity 0.3s ease;
}
.travel-link:hover { opacity: 0.65; }
.travel-section--green .travel-link,
.travel-section--green .travel-link:visited { color: #ffffff; }
.map-btn,
.map-btn:visited {
  display: inline-block; padding: 10px 32px;
  font-family: 'Gilda Display', serif;
  font-size: clamp(11pt, 2vw, 14pt); font-weight: 700;
  text-transform: uppercase; color: #404040;
  background-color: #ffffff; border: 2px solid #ffffff;
  border-radius: 999px; text-decoration: none;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.map-btn:hover,
.map-btn:focus-visible {
  background-color: transparent; color: #ffffff; text-decoration: none;
}
.travel-motif {
  width: 140px; height: auto; display: block;
  margin: 0 auto; opacity: 0.6;
}
@media (max-width: 768px) { .travel-motif { width: 100px; } }

/* Explore Cards (What's Around Benevento) */
.explore-note {
  background: #f2eeeb; border-radius: 12px;
  padding: clamp(24px, 4vw, 36px);
  font-family: 'Lato', sans-serif; font-size: 12pt; line-height: 1.7;
  max-width: 720px; margin: 0 auto;
}
.explore-note p { margin-bottom: 12px; }
.explore-card {
  background: #f2eeeb; border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.explore-card:hover {
  box-shadow: 0 4px 24px rgba(64, 64, 64, 0.1);
}
.explore-card__header {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px;
}
.explore-card__emoji { font-size: 28pt; line-height: 1; flex-shrink: 0; }
.explore-card__title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(14pt, 2.2vw, 18pt); font-weight: 400;
  margin: 0 0 4px; letter-spacing: 0.3px;
}
.explore-card__time {
  font-family: 'Lato', sans-serif; font-size: 10pt;
  color: #a2b09f; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.explore-card p {
  font-family: 'Lato', sans-serif; font-size: 11.5pt;
  line-height: 1.7; margin: 0; flex: 1;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.w-faq { background: #f2eeeb; color: #404040; font-family: 'Gilda Display', serif; }
.w-faq__inner { padding: 0px 0px 20px 0px; }
@media (max-width: 768px) { .w-faq__inner { padding: 0; } }
.w-faq__list { max-width: 920px; margin: 0 auto; }
.w-faq__item { border-bottom: 1px solid rgba(64, 64, 64, 0.22); }
.w-faq__btn {
  width: 100%; background: transparent; border: 0;
  padding: 26px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 22px;
  color: #404040; text-align: left; cursor: pointer;
}
.w-faq__q {
  font-family: 'Lato', sans-serif; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 12pt; font-weight: 500;
  margin: 0; line-height: 1.35;
}
@media (max-width: 768px) {
  .w-faq__btn { padding: 22px 0; }
  .w-faq__q { font-size: 11pt; letter-spacing: 0.14em; }
}
.w-faq__icon {
  flex: 0 0 auto; width: 34px; height: 34px;
  border-radius: 999px; display: grid; place-items: center;
  color: #404040; line-height: 1; font-size: 18pt;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.w-faq__panel {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity    0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.w-faq__panelInner {
  padding: 0 0 26px 0; font-family: 'Lato', sans-serif;
  font-size: 12.5pt; line-height: 1.65;
  color: rgba(64, 64, 64, 0.92);
}
.w-faq__panelInner p { margin: 0 0 12px 0; }
.w-faq__panelInner p:last-child { margin-bottom: 0; }
.w-faq__panelInner a,
.w-faq__panelInner a:visited {
  color: #404040; text-decoration: underline; text-underline-offset: 3px;
}
.w-faq__item.is-open .w-faq__panel { opacity: 1; }
.w-faq__item.is-open .w-faq__icon { transform: rotate(45deg); }
.w-faq__btn:focus-visible {
  outline: none; box-shadow: 0 0 0 4px rgba(64, 64, 64, 0.16);
  border-radius: 10px;
}
.w-faq__item.reveal { opacity: 1 !important; transform: none !important; }

/* ==========================================================================
   Footer
   ========================================================================== */
.wedding-footer {
  background-color: #404040; color: #ffffff;
  padding: 100px 0; font-family: 'Gilda Display', serif;
}
.wedding-footer a,
.wedding-footer a:visited { color: #ffffff; text-decoration: none; }
.wedding-footer a:hover,
.wedding-footer a:focus-visible { text-decoration: underline; }
.footer-initials { margin-bottom: 24px; }
.footer-initials img { max-width: 280px; height: auto; }
.footer-heading { font-size: 14pt; margin-bottom: 24px; }
.footer-small { font-size: 10pt; opacity: 0.7; margin-top: 24px; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-cta,
.footer-cta:visited {
  display: inline-block; padding: 6px 28px;
  font-family: inherit; font-size: 12pt; font-weight: 700;
  text-transform: uppercase; color: #ffffff;
  background-color: transparent; border: 2px solid #ffffff;
  border-radius: 999px;
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.footer-cta:hover,
.footer-cta:focus-visible {
  background-color: #ffffff; color: #404040;
  border-color: #ffffff; text-decoration: none;
}
.footer-cta:focus-visible {
  outline: none; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Page Content (generic pages like RSVP)
   ========================================================================== */
.page-content {
  background-color: #f2eeeb;
  font-family: 'Gilda Display', serif; color: #404040;
}
.nf-form-fields-required { display: none; }
