/* ------------------------- */
/* Fonts */
/* ------------------------- */
@font-face {
  font-family: "Belove Melody";
  src: url("../assets/fonts/BeloveMelody-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ------------------------- */
/* Custom properties */
/* ------------------------- */
:root {
  --color-purple-100: #e7dffb;
  --color-purple-800: #a788fd;
  --color-beige: #f8f7f3;
  --color-white: #ffffff;
  --color-text: #000000;
  --color-nav-text: #1E1E1E;
  --color-green-100: #cedcc1;
  --color-green-800: #92b579;
  --font-mono: "DM Mono", monospace;
  --font-display: "Belove Melody", cursive;
  --nav-height: 90px;
  --max-width: 1680px;
  --fs-hero: clamp(2.75rem, 8vw, 90px);
  --fs-section-title: clamp(2.5rem, 5vw, 4.5rem);
  --fs-subheading: clamp(2.75rem, 3vw, 3rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --fs-micro: 0.75rem;
}

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

body {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-beige);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ------------------------- */
/* Buttons */
/* ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-cta {
  background: var(--color-purple-800);
  color: var(--color-beige);
}

.btn-cta:hover {
  opacity: 0.88;
}

/* ------------------------- */
/* Header / Nav */
/* ------------------------- */
.site-header {
  background: var(--color-purple-100);
  position: relative;
  padding-top: var(--nav-height);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.nav-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 4vw;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--color-nav-text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--color-nav-text);
}

.nav-links a.active {
  font-weight: 700;
}

.nav-rsvp {
  padding: 0.85rem 2.2rem;
}

/* ------------------------- */
/* Hamburger (mobile only) */
/* ------------------------- */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger img {
  width: 26px;
  height: auto;
}

/* ------------------------- */
/* Mobile menu overlay */
/* ------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  height: 466px;
  z-index: 100;
  background: var(--color-beige);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
  text-align: center;
  overflow-y: auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.mobile-menu-links a {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-nav-text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.mobile-menu-links a.active {
  font-weight: 700;
  border-bottom-color: var(--color-nav-text);
}

/* body lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ------------------------- */
/* Rolling image strip */
/* ------------------------- */
.scroll-strip {
  width: 100%;
  overflow: hidden;
  height: 34vw;
  max-height: 460px;
}

.scroll-track {
  display: flex;
  gap: 15px;
  width: max-content;
  height: 100%;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.scroll-track img {
  height: 100%;
  width: auto;
  aspect-ratio: 577 / 682;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

@media (prefers-reduced-motion: reduce) {
  .scroll-track {
    animation: none;
  }

}

/* ------------------------- */
/* Hero */
/* ------------------------- */
.hero {
  text-align: center;
  padding: 4.5rem 1.5rem 5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-hero);
  line-height: 1;
}

.hero-date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 22px);
  letter-spacing: 0.12em;
  background: var(--color-beige);
  padding: 0.9rem 2rem;
  margin: 2rem 0 2.25rem;
}

.hero-details-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ------------------------- */
/* Meet the Bride / Groom */
/* ------------------------- */
.meet {
  display: flex;
  width: 100%;
}

.meet-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5.5rem 3vw;
}

.meet-bride {
  background: #f8f7f3;
}

.meet-groom {
  background: #ffffff;
}

.meet-photo-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 730 / 884;
  overflow: hidden;
  border: 2px solid var(--color-purple-800);
  margin-bottom: 2.5rem;
}

.meet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.meet-photo-wrap:hover .meet-photo,
.meet-photo-wrap.is-colored .meet-photo {
  filter: grayscale(0%);
}

.meet-heading {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-section-title);
  letter-spacing: 0.02em;
}

.title-divider {
  width: 111px;
  height: 1px;
  margin: 1.5rem 0 2rem;
  border: none;
  background: var(--color-green-800);
}

.title-divider.title-divider--details {
  display: none;
}

.meet-name-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 100%;
  height: 35px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(.75rem, 2vw, 1.25rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  background: var(--color-purple-100);
  margin-bottom: 1.25rem;
}

.meet-parent {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: var(--fs-body);
  letter-spacing: 2px;
  color: var(--color-text);
}

/* ------------------------- */
/* The Details section */
/* ------------------------- */
.details-section {
  padding: 5rem 6vw 6rem;
  background: var(--color-beige);
}

.details-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.details-heading-line {
  width: 90px;
  height: 1px;
  background: var(--color-green-800);
  opacity: 0.6;
}

.details-title {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-section-title);
  letter-spacing: 0.02em;
}

/* ---- Venue card ---- */
.info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 28px;
  padding: 3rem 4vw;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card.info-card--venue {
  background: var(--color-green-100);
  margin: 0 auto 4rem;
}

.info-card--dresscode {
  background: var(--color-white);
}

.info-card-heading {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-subheading);
  margin-bottom: 0.75rem;
}

.info-card-underline {
  display: block;
  height: 2px;
}

.info-card-underline--venue {
  background: #fff;
}

.info-card-underline--dresscode {
  background: var(--color-green-100);
}

.info-card-intro {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  letter-spacing: 1px;
  line-height: 24px;
  margin-bottom: 1.5rem;
}

.info-card-box {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(.85rem, 3vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 526px;
  padding: 20px 20px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.accomodation {
  padding: 5px 0px !important;
}

.info-card-box.info-card-box--address {
  background: #f8f7f399;
}

.info-card-box.info-card-box--dress {
  background: var(--color-purple-100);
}

.info-card-link {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

/* ---- Zigzag timeline ---- */
.timeline {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.timeline-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Visually hides content while keeping it in the accessibility tree —
   the standard, widely-tested pattern (used by WordPress, Bootstrap, etc.)
   Do not use `display: none` or `visibility: hidden` here, both of which
   would hide it from screen readers too. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.timeline-accessible-time {
  font-weight: 700;
}

/* ---- Banner Section ---- */
.banner_pic {
  margin: 0 auto;
}

.banner_image {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Photos section ---- */
.photos-section {
  background: var(--color-beige);
  padding: 5rem 6vw;
}

.info-card.info-card--photos {
  background: var(--color-purple-100);
}

.info-card-underline--photos {
  background: var(--color-white);
}

.info-card-box.info-card-box--photos {
  background: #ffffff8b;
  max-width: 100%;
}

/* ------------------------- */
/* The Accomodation section */
/* ------------------------- */
.accomodation-section {
  padding: 5rem 6rem 0rem 6rem;
  background: var(--color-white);
}

.info-card-acc {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  letter-spacing: 1px;
  line-height: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-card-box.info-card-box--acc {
  background: var(--color-purple-100);
  text-align: center;
}

/* ------------------------- */
/* Tablet */
/* ------------------------- */
@media (max-width: 1024px) and (min-width: 721px) {
  .nav-links {
    gap: 1.75rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .scroll-strip {
    height: 26vw;
    max-height: 320px;
  }

}

/* ------------------------- */
/* Mobile */
/* ------------------------- */
@media (max-width: 720px) {
  :root {
    --nav-height: 64px;
  }

  .nav-inner {
    padding: 0 5vw;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-rsvp {
    padding: 0.7rem 1.6rem;
    font-size: 0.8rem;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    top: 0;
  }

  .scroll-strip {
    height: 88vw;
    max-height: none;
  }

  .scroll-track {
    animation: scroll-left 20s linear infinite;
  }

  .scroll-track img {
    width: 74vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero {
    padding: 3rem 1.25rem 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero-date {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    padding: 0.75rem 1.4rem;
  }

  .meet {
    flex-direction: column;
  }

  .meet-col {
    padding: 3rem 8vw;
  }

  .meet-name-pill {
    font-size: clamp(.7rem, 15vw, .8rem);
  }

  .meet-parent {
    font-size: clamp(.6rem, 15vw, .8rem);
  }

  .meet-photo-wrap {
    max-width: 100%;
  }

  .details-heading {
    margin-bottom: 1rem;
  }

  .details-heading-line {
    display: none;
  }

  .title-divider.title-divider--details {
    display: block;
    margin: 0 auto 40px;
    background: var(--color-purple-800);
  }

  .info-card {
    flex-direction: column;
    padding: 2.25rem 6vw;
  }

  .info-card-col-left {
    text-align: center;
  }

  .info-card-col-middle {
    text-align: center;
  }

  .info-card-col-right {
    text-align: center;
  }

  .accomodation-section {
    padding: 5rem 1rem 0rem 1rem;
  }

  .info-card-acc br {
    display: none;
  }

  .info-card-box--acc br {
    display: none;
  }

  .info-card-box.info-card-box--photos {
    background: #ffffff8b;
    max-width: 100%;
  }

  .info-card-intro {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    line-height: 22px;
    margin-bottom: 1.5rem;
  }

  .info-card-acc {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    line-height: 22px;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .info-card-box {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    max-width: 526px;
    padding: 20px 20px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

}

/* =====================================================
   GIFTS SECTION
===================================================== */
.gifts-section {
  background: var(--color-beige);
  padding: 5rem 6vw;
}

.gifts-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-green-100);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  padding: 3.5rem 5vw;
  gap: 4rem;
}

.gifts-title {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-subheading);
}

.gifts-line {
  display: block;
  width: 120px;
  height: 1px;
  background: #ffffff;
  margin-top: 1rem;
}

.gifts-content {
  max-width: 700px;
}

.gifts-small {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gifts-message {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.bank-details-btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: none;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-small);
  line-height: 135%;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.bank-details-btn:hover {
  opacity: 0.8;
}

/* =====================================================
   RSVP SECTION
===================================================== */
.rsvp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}

/* LEFT PURPLE SIDE */
.rsvp-photo-side {
  background: var(--color-purple-800);
  padding: 4rem 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsvp-photo-title {
  width: 100%;
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-section-title);
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.rsvp-photo {
  width: 100%;
  max-width: 470px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border: 2px solid #ffffff;
  filter: grayscale(100%);
}

/* RIGHT FORM SIDE */
.rsvp-form-side {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 6vw;
}

.rsvp-form {
  width: 100%;
  max-width: 550px;
}

.rsvp-form-title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
}

.rsvp-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"] {
  width: 100%;
  background: var(--color-beige);
  border: 1px solid #ddd;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
}

.rsvp-form input[type="text"] {
  margin-bottom: 1rem;
}

.rsvp-field {
  margin-top: 2.8rem;
}

.rsvp-label {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.35em;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  cursor: pointer;
}

/* Guest counters */
.guest-counts {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
}

.guest-counter button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--color-beige);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
}

.counter-value {
  min-width: 15px;
  text-align: center;
}

/* RSVP button */
.rsvp-submit {
  width: 100%;
  margin-top: 2.5rem;
  padding: 1rem;
  border: none;
  background: var(--color-purple-800);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.4em;
  cursor: pointer;
}

.rsvp-submit:hover {
  opacity: 0.88;
}

.rsvp-deadline {
  margin-top: 1.2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.25em;
}

.rsvp-deadline-date {
  font-weight: 600;
}

.radio-row input[type="radio"] {
  accent-color: black;
}

/* =====================================================
   GIFTS + RSVP MOBILE
===================================================== */
@media (max-width: 720px) {
  /* GIFTS */
  .accomodation {
    padding: 5px 15px !important;
  }

  .gifts-section {
    padding: 3rem 5vw;
  }

  .gifts-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem 7vw;
    gap: 1.5rem;
  }

  .gifts-title {
    font-size: 2.2rem;
  }

  .gifts-line {
    margin: 0.75rem auto 0;
  }

  .gifts-small {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }

  .gifts-message {
    font-size: var(--fs-small);
    line-height: 22px;
  }

  .gifts-message br {
    display: none;
  }

  /* RSVP */
  .rsvp-section {
    display: block;
  }

  .rsvp-photo-side {
    padding: 3rem 6vw;
  }

  .rsvp-photo-title {
    text-align: center;
    font-size: 3rem;
  }

  .rsvp-photo {
    height: 410px;
    max-width: 100%;
  }

  .rsvp-form-side {
    padding: 4rem 7vw;
  }

  .rsvp-form-title {
    text-align: center;
  }

  .rsvp-name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .guest-counts {
    flex-direction: column;
    gap: 1.5rem;
  }

  .rsvp-form input[type="text"],
  .rsvp-form input[type="email"] {
    width: 100%;
    background: var(--color-beige);
    border: 1px solid #ddd;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
  }

  .radio-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    cursor: pointer;
  }

  .guest-counter {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
  }

  .guest-counter button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--color-beige);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
  }

  .rsvp-deadline {
    margin-top: 1.2rem;
    text-align: center;
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    letter-spacing: 0.25em;
  }

}

.rsvp-success {
  text-align: center;
  padding: 4rem 1rem;
}

.rsvp-success h3 {
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: normal;
  color: var(--color-purple-800);
  margin-bottom: 1.5rem;
}

.rsvp-success p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 6vw;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 5rem;
  background: var(--color-beige);
}

@media (max-width: 900px) {
  .faq-section {
    display: block;
  }

  .faq-heading-col {
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .faq-title-line {
    margin: 0.7rem auto 1.5rem !important;
  }

}

/* ---------- FAQ heading ---------- */
.faq-heading-col {
  padding-top: 0.5rem;
}

.faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: normal;
  line-height: 1;
}

.faq-title-line {
  display: block;
  width: 110px;
  height: 1px;
  margin: 0.7rem 0 1.5rem;
  background: var(--color-green-800);
}

.faq-subtitle {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
}

/* ---------- FAQ list ---------- */
.faq-list {
  width: 100%;
}

.faq-item {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

/* ---------- Question ---------- */
.faq-question {
  width: 100%;
  margin: 0;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.32em;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  opacity: 0.7;
}

/* ---------- Plus / minus ---------- */
.faq-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

/* =====================================================
   FAQ ANSWER ANIMATION

   max-height is used instead of grid-template-rows.
   This completely removes closed-answer spacing.
===================================================== */
.faq-answer {
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.4s ease;
}

.faq-answer.is-open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  padding: 0 3rem 1.35rem 0;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* Space only between paragraphs inside an OPEN answer */
.faq-answer p + p {
  padding-top: 0.5rem;
}

.faq-answer ul {
  margin: 0 0 1.35rem 0;
  padding: 0 3rem 0 0;
}

.faq-answer li {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section {
  background: var(--color-purple-800);
  color: #ffffff;
  text-align: center;
  padding: 4.5rem 6vw 0;
}

.contact-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact-line {
  width: 100px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

.contact-title {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: var(--fs-section-title);
}

.contact-copy {
  margin: 2rem auto;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 2rem 0 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-purple-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.contact-footer {
  border-top: 1px solid rgba(255,255,255,0.35);
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  font-family: DM Mono;
  font-weight: 500;
  font-size: 16px;
  line-height: 155%;
  letter-spacing: 0px;
  text-align: right;
}

/* =====================================================
   RSVP GUEST VALIDATION
===================================================== */
.guest-error {
  display: none;
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #a83b3b;
}

/* Show validation error */
.guest-error.show {
  display: block;
}

/* Optional subtle error emphasis */
.guest-counts.has-error {
  outline: 1px solid rgba(168, 59, 59, 0.45);
  outline-offset: 8px;
  border-radius: 4px;
}

/* =====================================================
   FAQ + CONTACT MOBILE
===================================================== */
@media (max-width: 720px) {
  .info-card-heading {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }

  .phts {
    gap: 2rem !important;
  }

  .faq-section {
    display: block;
    padding: 3.5rem 6vw;
  }

  .faq-heading-col {
    padding-top: 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .faq-title {
    font-size: 3rem;
  }

  .faq-title-line {
    margin: 0.7rem auto 1.5rem;
  }

  .faq-question {
    padding: 1.15rem 0;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }

  .faq-icon {
    margin-left: 0.75rem;
  }

  .faq-answer p {
    padding: 0 1rem 1.25rem 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-section {
    padding: 3.5rem 6vw 0;
  }

  .contact-heading {
    gap: 1rem;
  }

  .contact-line {
    width: 50px;
  }

  .contact-title {
    font-size: 3rem;
  }

  .contact-copy {
    font-size: 14px;
  }

  .contact-copy br {
    display: none;
  }

  .contact-details {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: fit-content;
    margin: 2rem auto 3rem;
  }

  .contact-item {
    font-size: 14px;
    align-items: center;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
  }

  .contact-footer {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 12px;
    line-height: 1.8;
  }

}

.venue-section {
  padding: 2rem 5vw;
  background: var(--color-beige);
}

.venue-card {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  column-gap: 3.5rem;
  padding: 2.5rem 3rem;
  background: var(--color-green-100);
  border-radius: 28px;
}

/* LEFT SIDE */
.venue-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.venue-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: normal;
  font-size: 3rem;
  line-height: 1;
}

.venue-line {
  display: block;
  width: 100px;
  height: 2px;
  margin-top: 1rem;
  background: #ffffff;
}

/* RIGHT SIDE */
.venue-right {
  width: 100%;
  max-width: 620px;
}

.venue-intro {
  margin: 0 0 1.25rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.5;
}

.venue-address {
  display: inline-block;
  padding: 0.7rem 1rem;
  background: rgba(248, 247, 243, 0.75);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.venue-map-link {
  display: block;
  width: fit-content;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* TABLET */
@media (max-width: 900px) {
  .venue-card {
    grid-template-columns: 180px 1fr;
    column-gap: 2rem;
    padding: 2rem;
  }

  .venue-title {
    font-size: 2.5rem;
  }

}

/* MOBILE */
@media (max-width: 720px) {
  .venue-section {
    padding: 1.5rem 5vw;
  }

  .venue-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.25rem 1.5rem;
    border-radius: 22px;
  }

  .venue-left {
    width: 100%;
    align-items: center;
  }

  .venue-title {
    font-size: 2.2rem;
  }

  .venue-line {
    width: 90px;
  }

  .venue-right {
    max-width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .venue-intro {
    font-size: 0.9rem;
    text-align: center;
  }

  .venue-address {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .venue-map-link {
    font-size: 0.85rem;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .bank-details-btn {
    padding: 1rem 1.3rem;
  }

}

.phts {
  gap: 7rem;
}
