/* ==========================================================================
   Variables & base
   ========================================================================== */
:root {
  --color-blush: #5C2A4A;
  --color-blush-dark: #4A1F3F;
  --color-cream: #fbf6f0;
  --color-cream-alt: #f3e9de;
  --color-ink: #3a2e2a;
  --color-ink-soft: #6b584f;
  --color-gold: #b8925a;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1100px;
  --section-padding: 6rem 1.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
}

.section-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

section {
  padding: var(--section-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 70px;
}

.section-label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-blush-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 3rem;
}

.section-title.tight {
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--color-ink-soft);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--color-blush);
  color: #fff;
  box-shadow: 0 8px 20px rgba(92, 42, 74, 0.35);
}

.btn-primary:hover {
  background: var(--color-blush-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar.is-scrolled {
  background: rgba(92, 42, 74, 0.95);
  box-shadow: 0 2px 18px rgba(58, 46, 42, 0.08);
  padding: 0.65rem 1.5rem;
  backdrop-filter: blur(6px);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2rem;
}

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-brand {
  position: relative;
    z-index: 2;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    height: 112px;
    margin: -14px 1.75rem;
    overflow: hidden;
    transition: 0.35s ease;
}

.nav-brand img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.navbar.is-scrolled .nav-brand {
  width: 80px;
  height: 70px;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links-desktop a,
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.35s ease;
}

.navbar.is-scrolled .nav-links-desktop a {
  color: #fff;
}

.nav-links-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav-links-desktop a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.navbar.is-scrolled .nav-toggle span {
  background: #fff;
}

.nav-toggle.is-active span,
.navbar.is-scrolled .nav-toggle.is-active span {
  background: var(--color-blush);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero (parallax)
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url("../images/hero_1.jpg");
  background-size: cover;
  /* background-position: center; */
  background-position: bottom;
  background-attachment: fixed;
  transform: translateY(65px);
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 20, 25, 0.35) 0%, rgba(30, 20, 25, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.hero-names {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #FCF8F3;
}

.hero-names .amp {
  display: inline-block;
  font-style: italic;
  color: #c7a04c; /*var(--color-gold);*/
  margin: 0 0.2em;
}

.hero-date {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.hero-scroll::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  100% { top: 20px; opacity: 0; }
}

/* ==========================================================================
   Our Story
   ========================================================================== */
.story {
  background: var(--color-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(58, 46, 42, 0.15);
}

.story-text .section-label,
.story-text .section-title {
  text-align: left;
}

.story-text .section-title {
  margin-bottom: 1.25rem;
}

.story-text p {
  color: var(--color-ink-soft);
  margin-bottom: 1.1rem;
}

.story-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-blush-dark);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Details
   ========================================================================== */
.details {
  background: var(--color-cream-alt);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
}

.detail-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream-alt);
  color: var(--color-blush-dark);
}

.detail-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.detail-card p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.detail-card .detail-strong {
  color: var(--color-ink);
  font-weight: 600;
}

.detail-map-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.detail-map-link:hover {
  color: var(--color-blush);
}

/* ==========================================================================
   Attire Inspiration
   ========================================================================== */
.attire {
  background: var(--color-cream-alt);
}

.attire-palette {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 3.5rem;
  flex-wrap: wrap;
}

.palette-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.palette-swatch span.swatch-color {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(58, 46, 42, 0.15);
  border: 3px solid #fff;
}

.palette-swatch small {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.attire-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.attire-group h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-blush-dark);
}

.attire-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.attire-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font: inherit;
}

.attire-card:hover,
.attire-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(58, 46, 42, 0.14);
}

.attire-card:focus-visible {
  outline: 2px solid var(--color-blush-dark);
  outline-offset: 3px;
}

.attire-card img {
  width: 100%;
  aspect-ratio: 365 / 750;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   Attire Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 12, 16, 0.9);
  padding: 2rem;
  animation: lightbox-fade 0.2s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: min(90vw, 700px);
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .lightbox-close {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

.attire-note {
  text-align: center;
  max-width: 620px;
  margin: 3rem auto 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   Schedule
   ========================================================================== */
.schedule {
  background: var(--color-cream);
}

.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 2.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-gold) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blush);
  border: 3px solid var(--color-cream);
  box-shadow: 0 0 0 2px var(--color-blush);
}

.timeline-time {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-blush-dark);
  margin-bottom: 0.15rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  background: var(--color-cream-alt);
  padding: 4rem 1.5rem;
}

.gallery .section-title {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border: none;
  padding: 0;
  background: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible,
.gallery-item:active {
  transform: scale(1.06);
  box-shadow: 0 18px 34px rgba(58, 46, 42, 0.3);
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s;
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.gallery-item:active img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item:nth-child(7) {
  grid-row: span 2;
}

/* ==========================================================================
   Countdown
   ========================================================================== */
.countdown {
  background: var(--color-blush-dark);
  color: #fff;
  position: relative;
  min-height: 0;
}

.countdown .section-label {
  color: rgba(255, 255, 255, 0.85);
}

.countdown .section-title,
.countdown .section-intro {
  color: #fff;
}

.countdown .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1.5rem 0.5rem;
  backdrop-filter: blur(4px);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1;
}

.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ==========================================================================
   Entourage
   ========================================================================== */
.entourage {
  background: var(--color-cream);
}

.entourage-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  padding: 3.5rem 3rem;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
  border: 1px solid rgba(184, 146, 90, 0.35);
  outline: 1px solid rgba(184, 146, 90, 0.35);
  outline-offset: -10px;
}

.entourage-card::before,
.entourage-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-gold);
}

.entourage-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.entourage-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.entourage-section {
  padding: 2rem 0;
}

.entourage-section:first-child {
  padding-top: 0;
}

.entourage-section:last-child {
  padding-bottom: 0;
}

.entourage-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.entourage-divider::before,
.entourage-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 146, 90, 0), rgba(184, 146, 90, 0.55));
}

.entourage-divider::after {
  background: linear-gradient(90deg, rgba(184, 146, 90, 0.55), rgba(184, 146, 90, 0));
}

.entourage-divider-mark {
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-gold);
  transform: rotate(45deg);
  flex: none;
}

.entourage-heading {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--color-blush-dark);
}

.entourage-cols {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.entourage-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.entourage-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.entourage-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-blush-dark);
}

.entourage-block p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.entourage-sponsors {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
}

.entourage-sponsors ul {
  display: grid;
  gap: 0.6rem;
}

.entourage-sponsors li {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  text-align: center;
}

.italic-phrase {
  font-size: 16px;
  font-weight: 100;
  font-style: italic;
}

/* ==========================================================================
   Travel
   ========================================================================== */
.travel {
  background: var(--color-cream);
}

.travel-subhead {
  text-align: center;
  font-size: 1.3rem;
  margin: 3rem 0 1.75rem;
}

.travel-subhead:first-of-type {
  margin-top: 2.5rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.travel-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
}

.travel-card-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  background: var(--color-cream-alt);
  color: var(--color-blush-dark);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.travel-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.travel-card p {
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.travel-card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blush-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.travel-card-link:hover {
  opacity: 0.75;
}

/* ==========================================================================
   Registry
   ========================================================================== */
.registry {
  background: var(--color-cream-alt);
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 620px;
  margin: 0 auto;
}

.registry-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
}

.registry-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.registry-card p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.registry-card .detail-strong {
  color: var(--color-ink);
  font-weight: 600;
}

.registry-note {
  text-align: center;
  max-width: 500px;
  margin: 2.5rem auto 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  font-style: italic;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--color-cream-alt);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(58, 46, 42, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-blush-dark);
  transition: transform 0.3s ease;
}

.faq-question .faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-question .faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.is-open .faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.faq-answer-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.faq-answer-list li {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
}

.faq-answer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.faq-answer-list strong {
  color: var(--color-ink);
}

.faq-answer a.accent-link {
  color: var(--color-blush-dark);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: bold;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--color-blush);
  color: rgba(255, 255, 255, 0.85);
}

.footer .footer-names {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer small {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer .footer-logo {
  margin-bottom: 10px;
}

.footer .footer-logo img {
  width: 65px;
  margin: 0 auto;
}

.footer .hashtag {
    font-family: var(--font-heading);
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-blush);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(58, 46, 42, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-blush-dark);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .story-text {
    padding: 2rem 1.5rem 0;
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .travel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .attire-groups {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .entourage-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --section-padding: 4.5rem 1.25rem;
  }

  .navbar {
    justify-content: center;
  }

  .nav-links-desktop {
    display: none;
  }

  .nav-brand {
    margin: -10px auto;
    z-index: 0;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 6rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links-logo {
    margin-bottom: 0.5rem;
  }

  .nav-links-logo img {
    width: 70px;
  }

  .nav-links a {
    color: var(--color-ink) !important;
    font-size: 1rem;
  }

  .schedule .section-inner {
    width: 80%;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-card {
    padding: 1.25rem 1.25rem;
    width: 80%;
    margin: 0 auto;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }

  .detail-icon svg {
    width: 20px;
    height: 20px;
  }

  .detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
  }

  .detail-card p {
    font-size: 0.85rem;
  }

  .attire-palette {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .palette-swatch small {
    display: inline-block;
    transform: rotate(-35deg);
    white-space: nowrap;
    font-size: 0.6rem;
    margin-top: 10px;
  }

  .stay-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .todo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .todo-grid .travel-card {
    padding: 1.5rem 1rem;
  }

  .todo-grid .travel-card h4 {
    font-size: 1rem;
  }

  .todo-grid .travel-card p {
    font-size: 0.8rem;
  }

  .stay-grid .travel-card {
    padding: 1.1rem 1rem;
  }

  .stay-grid .travel-card-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.6rem;
  }

  .stay-grid .detail-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.6rem;
  }

  .stay-grid .detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .stay-grid .travel-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .stay-grid .travel-card p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .stay-grid .travel-card-link {
    margin-top: 0.5rem;
    font-size: 0.78rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
    max-width: 420px;
  }

  .attire-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .entourage-card {
    padding: 2.25rem 1.5rem;
    outline-offset: -8px;
  }

  .entourage-card::before,
  .entourage-card::after {
    width: 18px;
    height: 18px;
  }

  .entourage-cols-2,
  .entourage-cols-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .entourage-sponsors {
    grid-template-columns: 1fr;
  }

  .registry-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bg {
    background-attachment: scroll;
    background-position: 48% bottom;
  }
}

@media (max-width: 480px) {
  .story-image {
    max-width: 340px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 90px;
    gap: 0.5rem;
  }

  .attire-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
