/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #b8963e;
  --gold-light: #d4af6a;
  --gold-pale:  #f2e8d3;
  --sage:       #5a7a5a;
  --sage-dark:  #3d5a3e;
  --ivory:      #faf7f2;
  --ivory-dark: #f0ead9;
  --text:       #1e1e1e;
  --text-mid:   #555;
  --text-light: #888;
  --white:      #ffffff;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }
.hidden { display: none; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,62,.15);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .12em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* photo background — fallback gradient shown until image loads */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #1a2a1a;
  background-image:
    linear-gradient(170deg, #2d1b00 0%, #5c3a10 30%, #3d5a3e 70%, #1a3020 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 2, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 24px;
}

.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--white);
}

.hero-names .amp {
  font-style: italic;
  color: var(--gold-light);
  margin: 0 .1em;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-light);
  margin: 28px auto;
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .15em;
  margin-bottom: 8px;
}

.hero-location {
  font-size: .82rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.hero-cta:hover {
  background: var(--gold-light);
  color: var(--text);
}

/* ===== COUNTDOWN ===== */
#countdown-section {
  background: var(--ivory-dark);
  border-top: 1px solid rgba(184,150,62,.2);
  border-bottom: 1px solid rgba(184,150,62,.2);
  padding: 32px 0;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 80px;
}
.countdown-item span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.countdown-item label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}
.countdown-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text);
}
.title-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== RSVP ===== */
#rsvp {
  padding: 100px 0;
  background: var(--ivory);
}

.rsvp-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 52px 48px;
  border-top: 4px solid var(--gold);
}

.rsvp-step { }
.rsvp-step.hidden { display: none; }

.rsvp-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 28px;
}

.field-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.field-hint {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.field-group {
  margin-bottom: 28px;
}
.field-group.hidden { display: none; }

.select-wrapper {
  position: relative;
  margin-bottom: 24px;
}
.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid #d8d0c0;
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 300;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}
select:focus {
  outline: none;
  border-color: var(--gold);
}

.text-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d0c0;
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color .2s;
}
.text-input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Radio cards */
.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-card {
  flex: 1;
  min-width: 130px;
  cursor: pointer;
}
.radio-card input[type="radio"] { display: none; }
.radio-label {
  display: block;
  padding: 14px 12px;
  border: 1.5px solid #d8d0c0;
  border-radius: var(--radius);
  text-align: center;
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer;
}
.radio-card input:checked + .radio-label,
.radio-card input:checked ~ .radio-label {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--text);
}
.radio-card:hover .radio-label {
  border-color: var(--gold-light);
}

.meal-card {
  display: flex;
  flex-direction: column;
}
.meal-card .radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
}
.meal-icon {
  font-size: 1.6rem;
  display: block;
}

/* Buttons */
.btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}
.btn-primary:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-mid);
  border: 1px solid #d8d0c0;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.form-actions .btn-primary { flex: 1; width: auto; }

/* Person headers (couple / plus one labels) */
.person-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.person-header.hidden { display: none; }

.person-badge {
  color: var(--gold);
  font-size: .9rem;
}

.person-name-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .04em;
}

/* Dietary textarea */
.dietary-group {
  margin-top: 16px;
  margin-bottom: 8px;
}

.textarea-input {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

/* Divider between person 1 and person 2 sections */
.person2-divider {
  border-top: 1px dashed #d8d0c0;
  margin: 24px 0 20px;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: .86rem;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.error-message.hidden { display: none; }

/* Confirmation */
.confirm-icon {
  width: 64px;
  margin: 0 auto 20px;
  color: var(--sage);
}
.confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 12px;
}
.confirm-message {
  text-align: center;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.8;
}

/* ===== GALLERY / OUR STORY ===== */
#gallery {
  padding: 100px 0;
  background: var(--white);
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.car-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  background: #111;
  cursor: zoom-in;
}

.car-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.car-slide.active {
  opacity: 1;
  z-index: 1;
}
.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.88);
  border: none;
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.car-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.car-prev { left: 16px; }
.car-next { right: 16px; }

.car-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.car-dots {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

.car-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(184,150,62,.28);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.car-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.car-dot:hover:not(.active) {
  background: rgba(184,150,62,.55);
}

.car-counter {
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--text-light);
  min-width: 36px;
  text-align: right;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.hidden { display: none; }

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
}

#lb-img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.22);
}

.lb-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ===== VENUE ===== */
#venue {
  background: var(--ivory-dark);
}

.venue-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(160deg, #1a0d00 0%, #3d2010 25%, #2d4a2d 60%, #0d1f0d 100%);
}

.venue-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(184,150,62,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(90,122,90,.18) 0%, transparent 50%);
}

/* Decorative arch shape */
.venue-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: var(--ivory-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,6,2,.4);
}

.venue-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.venue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.venue-subtitle {
  font-size: .82rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.7);
}

.venue-body {
  padding-top: 56px;
  padding-bottom: 100px;
}

.venue-body .venue-photo-grid {
  margin-bottom: 64px;
}

.venue-description {
  max-width: 740px;
  margin: 0 auto 72px;
  text-align: center;
}
.venue-description p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Venue feature cards */
.venue-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 72px;
}

.venue-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.venue-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}
.venue-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.venue-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.venue-link {
  display: inline-block;
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .08em;
}
.venue-link:hover { color: var(--gold-light); }

/* Photo grid */
.venue-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 220px;
  gap: 12px;
  margin-bottom: 56px;
  border-radius: 12px;
  overflow: hidden;
}

.venue-photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.photo-large  { grid-column: span 4; grid-row: span 2; }
.photo-small  { grid-column: span 2; }
.photo-medium { grid-column: span 3; }

/* Individual venue photo backgrounds */
#photo-1 { background-image: url('/images/venue/venue-1.jpg'); background-size: cover; background-position: center; }
#photo-2 { background-image: url('/images/venue/venue-2.jpg'); background-size: cover; background-position: center; }
#photo-3 { background-image: url('/images/venue/venue-3.jpg'); background-size: cover; background-position: center; }
#photo-4 { background-image: url('/images/venue/venue-4.jpg'); background-size: cover; background-position: center; }
#photo-5 { background-image: url('/images/venue/venue-5.jpg'); background-size: cover; background-position: center; }

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

.venue-photo:hover .photo-caption { background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%); }

/* Venue CTA */
.venue-cta {
  text-align: center;
}
.venue-cta p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  letter-spacing: .06em;
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== DRESS CODE ===== */
#dress-code {
  padding: 100px 0;
  background: var(--ivory-dark);
}

.dress-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.dress-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.dress-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 16px;
}

.dress-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 40px;
}

.dress-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  border-top: 1px solid rgba(184,150,62,.2);
  padding-top: 32px;
}

.dress-tip {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dress-tip-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(184,150,62,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.dress-tip div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dress-tip strong {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}

.dress-tip span {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== ACTIVITIES ===== */
#activities {
  padding: 100px 0;
  background: var(--white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.activity-card {
  background: var(--ivory);
  border-radius: 10px;
  padding: 32px 28px;
  border-bottom: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}

.activity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.activity-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.activity-card p:not(.activity-tag) {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .dress-tips { gap: 16px; }
  .activities-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
#footer {
  background: #1a1209;
  padding: 48px 24px;
  text-align: center;
}
.footer-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.footer-date {
  font-size: .8rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-love {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .12em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .rsvp-card { padding: 36px 24px; }
  .venue-hero-content { padding: 0 24px 80px; }
  .venue-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .photo-large  { grid-column: span 2; grid-row: span 1; }
  .photo-small  { grid-column: span 1; }
  .photo-medium { grid-column: span 1; }
  .venue-features { grid-template-columns: 1fr; }
  .radio-row { flex-direction: column; }
  .radio-card { min-width: unset; }
  .car-btn { width: 40px; height: 40px; font-size: 1rem; }
  .lb-img-wrap { max-width: calc(100vw - 80px); }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 480px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .68rem; letter-spacing: .12em; }
  .hero-names { font-size: 3.2rem; }
  .venue-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 160px);
  }
  .photo-large, .photo-small, .photo-medium { grid-column: span 1; grid-row: span 1; }
  .car-prev { left: 8px; }
  .car-next { right: 8px; }
  .car-btn { width: 36px; height: 36px; font-size: .9rem; }
}
