/* ============================================================
   WEDDING WEBSITE — Jesse & Steph
   October 24, 2026 · Wigington Pavilion · St. Paul, MN
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  --maroon:        #800000;
  --maroon-dark:   #5C0000;
  --maroon-deep:   #3D0000;
  --maroon-mid:    #6B0000;
  --lilac:         #C8A2C8;
  --lilac-deep:    #7B5EA7;
  --lilac-light:   #DFC2DF;
  --lilac-pale:    #F4ECF4;
  --maroon-footer: #4A0000;
  --gold:          #D4AF37;
  --gold-light:    #E8CC6A;
  --gold-pale:     #F9F3DC;
  --cream:         #FDFAF5;
  --cream-dark:    #F5EFE6;
  --white:         #FFFFFF;
  --charcoal:      #1E1E1E;
  --text-dark:     #2C2C2C;
  --text-mid:      #5A5A5A;
  --text-light:    #888888;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Raleway', Helvetica, Arial, sans-serif;

  --nav-height:    72px;
  --section-pad-v: 120px;
  --container-max: 1100px;
  --radius:        2px;

  --transition:    all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ── Typography Utilities ─────────────────────────────────── */

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-eyebrow--light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
  margin: 1.5rem auto 0;
}

.section-subtitle--light {
  color: rgba(253, 250, 245, 0.72);
}

/* ── Divider ──────────────────────────────────────────────── */

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.25rem auto;
  max-width: 200px;
}

.divider-line {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--gold);
  opacity: 0.6;
}

.divider-diamond {
  font-size: 0.45rem;
  color: var(--gold);
  flex-shrink: 0;
}

.divider--light .divider-line {
  background: rgba(212, 175, 55, 0.5);
}

.divider--light .divider-diamond {
  color: var(--gold-light);
}

/* ── Layout ───────────────────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding: var(--section-pad-v) 0;
}

.section--cream {
  background: var(--cream);
}

.section--maroon {
  background: #6B0000;
  background: linear-gradient(160deg, #5C0000 0%, #6B0000 55%, #7A0000 100%);
}

.section--lilac {
  background: var(--lilac-deep);
  background: linear-gradient(160deg, #6A4E96 0%, var(--lilac-deep) 55%, #8A6BB8 100%);
}

/* Text overrides for RSVP section (uses section--lilac without --light modifier classes) */
.section--lilac .section-eyebrow {
  color: var(--gold-light);
}

.section--lilac .section-title {
  color: var(--cream);
}

.section--lilac .section-subtitle {
  color: rgba(253, 250, 245, 0.82);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--charcoal);
}

.btn--maroon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn--maroon:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--charcoal);
}

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(8px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.nav--scrolled {
  background: rgba(58, 0, 0, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.nav.nav--scrolled .nav-monogram {
  color: var(--cream);
}

.nav.nav--scrolled .nav-links a {
  color: rgba(253, 250, 245, 0.8);
}

.nav.nav--scrolled .nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav.nav--scrolled .nav-hamburger span {
  background: var(--cream);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-monogram {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--maroon);
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-color: #4A2D7A;
  /* Gradient shows when hero.jpg is missing */
  background-image:
    url('images/hero.jpg'),
    linear-gradient(150deg, #3A1F6A 0%, #7B5EA7 45%, #5C0000 100%);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.12) 60%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-names {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-name {
  display: inline-block;
}

.hero-ampersand {
  font-size: 0.65em;
  color: var(--gold);
  font-weight: 300;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.hero-date {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.9);
  margin-bottom: 0.5rem;
}

.hero-venue {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(253, 250, 245, 0.65);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: 2rem 0 2.5rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  min-width: 2ch;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.countdown-sep {
  font-size: 0.35rem;
  color: rgba(212, 175, 55, 0.45);
  align-self: flex-start;
  margin-top: 1rem;
}

.hero-countdown.countdown-done {
  display: none;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hero-scroll-cue:hover {
  opacity: 0.7;
}

.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Our Story ────────────────────────────────────────────── */

.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.story-image {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.story-image-frame {
  position: relative;
  background:
    url('images/proposal.jpg') center/cover no-repeat,
    linear-gradient(135deg, #C8A2C8 0%, #D4AF37 60%, #F5EFE6 100%);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-image-frame--second {
  margin-top: 1.5rem;
  background-image:
    url('images/couple.jpg'),
    linear-gradient(135deg, #D4AF37 0%, #C8A2C8 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-placeholder::before {
  content: 'Jesse & Steph';
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--lilac);
  opacity: 0.7;
}

.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(40, 20, 40, 0.45), transparent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(253, 250, 245, 0.8);
  text-align: center;
}

.story-text {
  padding-top: 0.5rem;
}

.story-chapter {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.story-chapter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.story-chapter-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.story-chapter p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ── Gallery ──────────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}

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

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/* ── Event Details ────────────────────────────────────────── */

.details-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.details-card {
  padding: 2.5rem;
  text-align: center;
}

.details-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.details-card-icon svg {
  width: 100%;
  height: 100%;
}

.details-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.details-card-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 1.5rem;
}

.details-list {
  list-style: none;
  font-family: var(--font-sans);
}

.details-list dt {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.3rem;
  margin-top: 1.1rem;
}

.details-list dt:first-child {
  margin-top: 0;
}

.details-list dd {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(253, 250, 245, 0.78);
}

.details-card-divider-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 200px;
  padding: 1rem 2rem;
}

.details-card-divider-line {
  display: block;
  width: 1px;
  flex: 1;
  background: rgba(212, 175, 55, 0.35);
}

.details-card-divider-diamond {
  font-size: 0.5rem;
  color: rgba(212, 175, 55, 0.6);
  flex-shrink: 0;
}

.details-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253, 250, 245, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 2rem;
}

.details-note em {
  font-style: italic;
  color: rgba(253, 250, 245, 0.72);
}

/* ── RSVP ─────────────────────────────────────────────────── */

.rsvp-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 60px rgba(15, 5, 30, 0.35);
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--center {
  align-items: center;
  margin-top: 0.5rem;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}

.form-required {
  color: var(--maroon);
}

.form-input {
  font-family: var(--font-sans);
  font-size: max(16px, 0.9rem);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(200, 162, 200, 0.2);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dark);
}

.form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--lilac);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.form-radio input[type="radio"]:checked + .form-radio-custom {
  border-color: var(--maroon-mid);
}

.form-radio input[type="radio"]:checked + .form-radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--maroon-mid);
  border-radius: 50%;
}

.rsvp-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.rsvp-success.visible {
  display: block;
  animation: fadeIn 0.6s ease;
}

.rsvp-success-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.rsvp-success h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.rsvp-success p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Travel & Stay ────────────────────────────────────────── */

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

.hotel-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hotel-card--featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hotel-card--featured:hover {
  box-shadow: 0 8px 36px rgba(212, 175, 55, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hotel-card-body {
  padding: 1.75rem;
}

.hotel-card-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hotel-card-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.hotel-card-distance {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hotel-card-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.hotel-card-block {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding: 0.6rem 0.85rem;
  margin-bottom: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hotel-card-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hotel-card-link:hover {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
}

.travel-info {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  align-items: start;
}

.travel-info-item {
  padding: 0 1.5rem;
  text-align: center;
}

.travel-info-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon-mid);
  margin-bottom: 0.6rem;
}

.travel-info-item p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

.travel-info-divider {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 0 0.5rem;
  padding-top: 0.35rem;
  align-self: flex-start;
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq-list {
  border-top: 1px solid var(--cream-dark);
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.35rem 0;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--maroon-mid);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-question:hover span:first-child {
  color: var(--maroon);
}

.faq-icon {
  font-size: 0.45rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--maroon);
}

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

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  padding-bottom: 1.35rem;
}

/* ── Registry ─────────────────────────────────────────────── */

.registry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.registry-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.registry-grid--one {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.registry-card {
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.registry-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.registry-card-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.registry-card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.registry-card-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 245, 0.45);
  margin-bottom: 1.5rem;
}

.registry-card-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.registry-card:hover .registry-card-link {
  border-bottom-color: var(--gold);
}

.registry-note {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.48);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--maroon-footer);
  background: linear-gradient(160deg, #3A0000 0%, var(--maroon-footer) 60%, #550000 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-monogram {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.footer-date {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer-venue {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(253, 250, 245, 0.45);
  margin-bottom: 1.5rem;
}

.footer .divider {
  margin: 1.5rem auto;
}

.footer .divider-line {
  background: rgba(212, 175, 55, 0.3);
}

.footer .divider-diamond {
  color: rgba(212, 175, 55, 0.4);
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.25);
}

/* ── Password Gate ────────────────────────────────────────── */

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 35% 45%, rgba(123, 94, 167, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(107, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #140308 0%, #1E0A0A 50%, #120310 100%);
  transition: opacity 0.6s ease;
}

.password-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.password-gate-inner {
  text-align: center;
  padding: 2rem;
  max-width: 380px;
  width: 100%;
}

.password-gate-monogram {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.password-gate-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.password-gate-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  max-width: 140px;
  margin: 0 auto 2.5rem;
}

.password-gate-divider .divider-line {
  background: rgba(212, 175, 55, 0.4);
}

.password-gate-divider .divider-diamond {
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.45rem;
}

.password-gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.password-gate-input {
  font-family: var(--font-sans);
  font-size: max(16px, 0.9rem);
  font-weight: 300;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.1em;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.password-gate-input::placeholder {
  color: rgba(253, 250, 245, 0.3);
  letter-spacing: 0.08em;
}

.password-gate-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.password-gate-btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

.password-gate-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.password-gate-error {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(220, 150, 150, 0.9);
  letter-spacing: 0.05em;
  margin-top: 1rem;
  min-height: 1.1em;
  transition: opacity 0.3s ease;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  :root {
    --section-pad-v: 80px;
  }

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

  .story-image {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .hotels-grid .hotel-card--featured {
    grid-column: 1 / -1;
  }

  .travel-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .travel-info-divider {
    display: none;
  }

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

  .details-card-divider-vertical {
    flex-direction: row;
    height: auto;
    width: 100%;
    padding: 0.5rem 2rem;
  }

  .details-card-divider-line {
    width: auto;
    height: 1px;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-position: center 20%;
  }
}

@media (max-width: 700px) {
  :root {
    --section-pad-v: 64px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(253, 250, 245, 0.97);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    color: var(--text-mid) !important;
    border-bottom: none !important;
    border-bottom: 1px solid var(--cream-dark) !important;
    letter-spacing: 0.15em;
  }

  .nav-links li:last-child a {
    border-bottom: none !important;
  }

  .nav-links a:hover {
    color: var(--gold) !important;
    background: var(--cream);
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-names {
    flex-direction: column;
    gap: 0;
    line-height: 1;
  }

  .hero-ampersand {
    font-size: 0.5em;
    margin: 0.2em 0;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

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

  .hotels-grid .hotel-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

  .rsvp-form {
    padding: 2rem 1.5rem;
  }

  .details-grid {
    max-width: 100%;
  }

  .details-card {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }
}
