:root {
  --pearl: #f4f3ee;
  --pearl-dark: #eceae2;
  --moss: #3a5a40;
  --moss-dark: #1f3325;
  --moss-light: #4a7352;
  --gold: #b8963e;
  --gold-light: #d4af65;
  --white: #f8f9fa;
  --charcoal: #181818;
  --warm-mid: #6b6258;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

p {
  font-size: 16px !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto;
  overflow-x: hidden;
}
body {
  background: var(--pearl);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
       FLORAL DIVIDER
    ============================================= */
.floral-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 0;
  background: var(--pearl);
}
.floral-divider svg {
  width: 220px;
  height: auto;
}

/* =============================================
       HEADER
    ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s var(--ease-expo),
    backdrop-filter 0.5s;
}
.header.scrolled {
  background: rgba(244, 243, 238, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(58, 90, 64, 0.1);
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.4s;
}
.logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.header.scrolled .logo {
  color: var(--moss-dark);
}
.header.scrolled .logo em {
  color: var(--gold);
}
.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, 0.82);
  transition: color 0.3s;
}
.nav a:hover {
  color: var(--gold-light);
}
.header.scrolled .nav a {
  color: var(--warm-mid);
}
.header.scrolled .nav a:hover {
  color: var(--moss);
}
.btn-reserve {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid rgba(248, 249, 250, 0.65);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-expo);
}
.btn-reserve:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.header.scrolled .btn-reserve {
  border-color: var(--moss);
  color: var(--moss);
}
.header.scrolled .btn-reserve:hover {
  background: var(--moss);
  color: var(--white);
}

/* =============================================
       HERO — Full-bleed Elian & Rose style
    ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 18, 13, 0.72) 0%,
    rgba(12, 18, 13, 0.28) 45%,
    rgba(12, 18, 13, 0.08) 100%
  );
}
.hero-tag {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-tag-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(248, 249, 250, 0.75);
  display: block;
  margin-bottom: 2px;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 80px 64px;
}
.hero-names-row {
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  overflow: hidden;
  line-height: 1;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 10.5vw, 160px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  display: inline-block;
}
.hero-amp {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 120px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  display: inline-block;
  flex: 1;
  text-align: center;
}
.hero-date-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
}
.hero-date-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero-date-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, 0.65);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248, 249, 250, 0.4);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

/* =============================================
       GALLERY — Fan/arc style with perspective
    ============================================= */
.gallery-section {
  padding: 80px 0 60px;
  background: var(--pearl);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 56px;
}
.gallery-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  color: var(--moss-dark);
  line-height: 1.1;
}
.gallery-title em {
  font-style: italic;
  font-weight: 300;
}

/* 3D Fan carousel — like the reference */
.gallery-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 60px;
  perspective: 1200px;
}
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 80px;
  animation: gallerySlide 42s linear infinite;
  transform-style: preserve-3d;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.gallery-track-2 {
  animation-direction: reverse;
  animation-duration: 50s;
  margin-top: 20px;
}
@keyframes gallerySlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.gallery-item {
  flex-shrink: 0;
  width: 220px;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 110px 110px 10px 10px;
  box-shadow: 0 12px 40px rgba(30, 30, 20, 0.18);
  transition:
    transform 0.5s var(--ease-expo),
    box-shadow 0.5s;
  cursor: pointer;
}
/* Alternating 3D tilts — fan perspective effect */
.gallery-item:nth-child(3n + 1) {
  transform: perspective(800px) rotateY(8deg) rotateZ(-2deg) translateY(0);
}
.gallery-item:nth-child(3n + 2) {
  transform: perspective(800px) rotateY(0deg) rotateZ(0deg) translateY(-10px);
}
.gallery-item:nth-child(3n + 3) {
  transform: perspective(800px) rotateY(-8deg) rotateZ(2deg) translateY(0);
}
.gallery-item:nth-child(3n + 1):hover {
  transform: perspective(800px) rotateY(4deg) rotateZ(-1deg) translateY(-18px)
    scale(1.05);
  box-shadow: 0 28px 56px rgba(30, 30, 20, 0.28);
}
.gallery-item:nth-child(3n + 2):hover {
  transform: perspective(800px) rotateY(0deg) rotateZ(0deg) translateY(-22px)
    scale(1.06);
  box-shadow: 0 28px 56px rgba(30, 30, 20, 0.28);
}
.gallery-item:nth-child(3n + 3):hover {
  transform: perspective(800px) rotateY(-4deg) rotateZ(1deg) translateY(-18px)
    scale(1.05);
  box-shadow: 0 28px 56px rgba(30, 30, 20, 0.28);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease-expo);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-fade-left,
.gallery-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--pearl), transparent);
}
.gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--pearl), transparent);
}

/* =============================================
       VENUE — Dark 50/50 like Velvet Grove Estate
    ============================================= */
.venue-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.venue-image {
  position: relative;
  overflow: hidden;
}
.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s var(--ease-expo);
}
.venue-image:hover img {
  transform: scale(1.04);
}
.venue-content {
  background: var(--moss-dark);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 1024px) {
    padding: 60px 52px;
  }

  @media (max-width: 768px) {
    padding: 50px 42px;
  }

  @media (max-width: 1024px) {
    padding: 40px 32px;
  }
}
.venue-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 243, 238, 0.45);
  margin-bottom: 20px;
}
.venue-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--pearl);
  margin-bottom: 12px;
}
.venue-heading span {
  display: block;
  font-size: 80px;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;

  @media (max-width: 1024px) {
    font-size: 72px;
  }

  @media (max-width: 768px) {
    font-size: 54px;
  }

  @media (max-width: 425px) {
    font-size: 38px;
  }
}
.venue-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 243, 238, 0.65);
  margin-bottom: 36px;
}
.venue-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 40px;
}
.venue-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 243, 238, 0.4);
  margin-bottom: 4px;
}
.venue-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--pearl);
}
.venue-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pearl);
  border: 1px solid rgba(244, 243, 238, 0.3);
  padding: 14px 28px;
  width: fit-content;
  transition: all 0.35s var(--ease-expo);
}
.venue-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* =============================================
       TIMELINE
    ============================================= */
.timeline-section {
  padding: 110px 80px;
  background: var(--pearl);
}
.timeline-header {
  text-align: center;
  margin-bottom: 90px;

  @media (max-width: 768px) {
    margin-bottom: 40px;
  }

  @media (max-width: 425px) {
    margin-bottom: 20px;
  }
}
.timeline-items {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 10%,
    var(--gold) 90%,
    transparent
  );
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 80px;
  align-items: center;

  @media (max-width: 768px) {
    margin-bottom: 40px;
  }

  @media (max-width: 425px) {
    margin-bottom: 20px;
  }
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-img {
  height: 500px;
  overflow: hidden;
}
.timeline-img img {
  object-position: center 20%;
  transition: transform 0.7s var(--ease-expo);
}
.timeline-img:hover img {
  transform: scale(1.04);
}
.timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.timeline-dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--pearl);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-text {
  padding: 0 48px;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: rgba(58, 90, 64, 0.07);
  line-height: 1;
  margin-bottom: -20px;
}
.timeline-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--moss-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.timeline-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-mid);
}
.timeline-item:nth-child(even) .timeline-img {
  order: 3;
}
.timeline-item:nth-child(even) .timeline-text {
  order: 1;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-dot {
  order: 2;
}

/* =============================================
       FULL BLEED PARALLAX
    ============================================= */
.fullbleed-section {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.fullbleed-bg {
}
.fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =============================================
       DETAILS
    ============================================= */
.details-section {
  padding: 100px 80px;
  background: var(--white);
}
.details-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--moss-dark);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.detail-card {
  background: var(--pearl);
  padding: 56px 44px;
  text-align: center;
  transition: background 0.4s;
}

.detail-card-btn {
  padding: 10px 22px;
  background-color: var(--moss-dark);
  color: var(--pearl);
  display: block;
  margin: 0 auto;
  width: fit-content;
  transition: 300ms ease-in-out;

  &:hover {
    background-color: var(--moss-light);
  }
}
.detail-card:hover {
  background: #e8e6de;
}
.detail-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}
.detail-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.detail-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--moss-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.detail-card-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.88;
  color: var(--warm-mid);
}
.dress-warning {
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  background: rgba(184, 150, 62, 0.06);
}
.dress-warning p {
  font-size: 13px;
  color: var(--warm-mid);
  line-height: 1.75;
}
.dress-warning strong {
  color: var(--moss-dark);
  font-weight: 500;
}
.color-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-mid);
}
.chip-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* =============================================
       HOTEL — "Where to sleep after the party" style
    ============================================= */
.hotel-section {
  padding: 0 0 100px;
  background: var(--pearl);
}
.hotel-heading-block {
  text-align: center;
  padding: 80px 48px 64px;
}
.hotel-main-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--moss-dark);
}
.hotel-main-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}
.hotel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 72px;
  padding: 0 80px;
  align-items: start;
}
.hotel-image {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.hotel-image img {
  transition: transform 0.8s var(--ease-expo);
}
.hotel-image:hover img {
  transform: scale(1.04);
}
.hotel-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
}
.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.hotel-list-item {
  padding: 28px 0;
  transition: opacity 0.3s;
}
.hotel-list-item:first-child {
  padding-top: 0;
}
.hotel-list-item.muted {
  opacity: 0.38;
}
.hotel-item-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;

  @media (max-width: 900px) {
    font-size: 18px;
  }
}
.hotel-item-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--moss-dark);
  margin-bottom: 8px;
  line-height: 1.2;

  @media (max-width: 1024px) {
    font-size: 32px;
  }

  @media (max-width: 768px) {
    font-size: 26px;
  }
}
.hotel-item-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--warm-mid);
}
.hotel-discount-badge {
  margin-top: 32px;
  background: var(--moss-dark);
  padding: 24px 28px;
}
.hotel-discount-badge p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(244, 243, 238, 0.8);
}
.hotel-discount-badge strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* =============================================
       RSVP
    ============================================= */
.rsvp-section {
  padding: 100px 80px;
  background: #ffffff;
  text-align: center;
}
.rsvp-header {
  max-width: 620px;
  margin: 0 auto 20px;
}
.rsvp-header .section-title {
  margin-bottom: 18px;
}
.rsvp-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-mid);
  margin-bottom: 16px;
}

.children-message {
  padding: 20px 30px;
  background-color: var(--pearl-dark);
  color: var(--moss-dark);
}
.rsvp-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-mid);
  letter-spacing: 0.03em;
  line-height: 1.75;
  padding: 16px 24px;
  border-top: 1px solid rgba(58, 90, 64, 0.15);
  margin-bottom: 52px;
  font-style: italic;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.rsvp-frame-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  padding: 0;
  box-shadow: none;
}
.rsvp-placeholder {
  border: none;
  padding: 0;
  color: var(--warm-mid);
  font-family: var(--font-body);
}
.rsvp-placeholder .rsvp-form-missing {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-mid);
  padding: 24px;
  border: 1px dashed rgba(58, 90, 64, 0.25);
}

/* Fillout: recorte visual para ocultar label y fondo gris del iframe */
.wi-fillout-crop {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: var(--wi-fillout-height, 420px);
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}
.wi-fillout-iframe {
  position: absolute;
  top: -132px;
  left: 50%;
  width: 650px;
  max-width: 100%;
  height: calc(var(--wi-fillout-height, 420px) + 132px);
  transform: translateX(-50%);
  border: none;
  background: transparent;
}

/* =============================================
       GIFT
    ============================================= */
.gift-section {
  padding: 110px 80px;
  background: #ffffff;
  text-align: center;
}
.gift-inner {
  max-width: 560px;
  margin: 0 auto;
}
.gift-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 150, 62, 0.35);
  border-radius: 50%;
}
.gift-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.gift-header {
  margin-bottom: 24px;
}
.gift-body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-mid);
}
.gift-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(58, 90, 64, 0.15);
  font-style: italic;
  font-size: 14px !important;
  letter-spacing: 0.02em;
}

/* =============================================
       CLOSING
    ============================================= */
.closing-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
}
.closing-bg img {
  height: 112%;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 22, 17, 0.38) 0%,
    rgba(15, 22, 17, 0.68) 100%
  );
}
.closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
}
.closing-content p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto 20px;
}
.closing-names {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* =============================================
       FOOTER
    ============================================= */
.footer {
  background: var(--pearl-dark);
  padding: 64px 80px 40px;
  border-top: 1px solid rgba(58, 90, 64, 0.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 243, 238, 0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--moss-dark);
  text-align: center;
}
.footer-logo span {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-top: 6px;
  font-family: var(--font-body);
}
.footer-col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col p,
.footer-col a {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 2;
  color: var(--warm-mid);
  display: block;
}
.footer-col a:hover {
  color: var(--moss);
}
.footer-top {
  border-bottom-color: rgba(58, 90, 64, 0.12);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-mid);
  opacity: 0.6;
}
.footer-hearts {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.7;
}

/* =============================================
       FADE UTILITY
    ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
}
.fade-left {
  opacity: 0;
  transform: translateX(-44px);
}
.fade-right {
  opacity: 0;
  transform: translateX(44px);
}
.fade-in {
  opacity: 0;
}

/* Fallback: show content if JS/animations fail */
html.wi-no-animations .fade-up,
html.wi-no-animations .fade-left,
html.wi-no-animations .fade-right,
html.wi-no-animations .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 960px) {
  .header {
    padding: 0 24px;
  }
  .nav {
    display: none;
  }
  .hero-bottom {
    padding: 0 32px 52px;
  }
  .hero-name {
    font-size: clamp(52px, 12vw, 80px);
  }
  .hero-tag {
    left: 32px;
  }
  .venue-section {
    grid-template-columns: 1fr;
  }
  .venue-image {
    height: 360px;
  }
  .timeline-section {
    padding: 72px 24px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline-line,
  .timeline-dot {
    display: none;
  }
  .timeline-text {
    order: 1 !important;
    padding: 0;
    text-align: left !important;
  }
  .timeline-img {
    order: 2 !important;
    height: auto;
    aspect-ratio: 1/1;
  }
  .details-section {
    padding: 72px 24px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .hotel-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 48px;
  }
  .hotel-image {
    height: 300px;
  }
  .rsvp-section {
    padding: 72px 24px;
  }
  .rsvp-frame-wrapper {
    padding: 24px;
  }
  .gift-section {
    padding: 72px 24px;
  }
  .footer {
    padding: 48px 24px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

.rsvp-frame-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: var(--pearl);
}

.rsvp-placeholder {
  max-width: 400px;
  width: 100%;
}

.nf-form-title,
.nf-before-form-content,
.nf-field-label {
  display: none !important;
}

.list-checkbox-wrap .nf-field-element li {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
.list-checkbox-wrap .nf-field-element li label {
  width: fit-content !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--moss-dark) !important;
  font-family: var(--font-display) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-left: 20px !important;
}

input[type="submit"] {
  background-color: var(--moss-dark) !important;
  color: var(--pearl) !important;
  border: none !important;
  padding: 10px 20px !important;
  cursor: pointer !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--pearl) !important;
  font-family: var(--font-display) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: all 0.3s ease-in-out !important;
  &:hover {
    background-color: var(--moss) !important;
    color: var(--pearl) !important;
  }
}
