/* ═══════════════════════════════════════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark:  #a8823f;
  --ivory:      #faf8f5;
  --ivory-dark: #f0ebe3;
  --cream:      #e8e0d4;
  --text:       #1e1e1e;
  --text-mid:   #4a4a4a;
  --text-muted: #7a7a7a;
  --white:      #ffffff;
  --success:    #4caf7d;
  --error:      #e07070;
  --radius:     8px;
  /* Admin */
  --nav-bg:     #1e2230;
}

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

html { scroll-behavior: smooth; }

body { font-family: 'Lato', sans-serif; color: var(--text); }

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

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED LAYOUT HELPERS
   ═══════════════════════════════════════════════════════════════════════════ */

.container    { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width:  680px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.section-heading.light { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS (site-facing)
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-site {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.btn-site-gold    { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-site-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-site-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-site-outline:hover { background: var(--gold); color: var(--white); }
.btn-site-lg { padding: 0.9rem 3rem; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   SITE NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 2rem;
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.site-nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}
.site-nav-links a:hover { color: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-print {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s;
}
.nav-print:hover { background: rgba(255,255,255,0.1); }

/* Nav after scroll */
.nav-scrolled {
  background: rgba(30, 34, 48, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-scrolled .site-nav-logo  { color: var(--gold-light); }
.nav-scrolled .site-nav-links a { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform: scale(1.04);  /* prevents white edge on scroll */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,18,0.35) 0%,
    rgba(10,10,18,0.55) 50%,
    rgba(10,10,18,0.75) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

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

.hero-tag {
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 1.25rem;
  width: 200px;
}
.hero-rule-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-rule-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.hero-venue {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
}

/* Countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.cd-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.cd-item small {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}
.cd-sep {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-arrow { font-size: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INVITATION SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.inv-section {
  background: var(--ivory);
  padding: 6rem 0;
  text-align: center;
}

.inv-section .section-heading {
  font-style: italic;
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.inv-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.inv-deadline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   THE DAY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.day-section {
  position: relative;
  padding: 6rem 0;
  background: #1c1f2e;
  overflow: hidden;
}

.day-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/venue_3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.day-inner { position: relative; }

/* Timeline */
.timeline {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 28px 1fr;
  gap: 0 1rem;
  align-items: start;
  margin-bottom: 0;
}

.tl-time {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 0.2rem;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-node span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.25);
}

/* vertical line between nodes */
.tl-node::after {
  content: '';
  width: 1px;
  flex: 1;
  min-height: 3.5rem;
  background: rgba(201,169,110,0.3);
  margin-top: 4px;
}
.tl-node.last::after { display: none; }

.tl-body {
  padding-bottom: 2.5rem;
}

.tl-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.tl-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Dress code */
.day-dresscode {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.dresscode-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.dresscode-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
}

.day-extra {
  text-align: center;
  margin-top: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.day-extra p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  white-space: pre-line;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VENUE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.venue-section {
  padding: 6rem 0;
  background: var(--white);
}

/* Photo gallery */
.venue-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 480px;
}

.venue-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
}

.venue-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ivory-dark);
}

/* Secondary photo strip */
.venue-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: 3rem;
  height: 160px;
}
.venue-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Venue detail split */
.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.venue-address-block {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.venue-address-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

.venue-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.venue-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.venue-map-block {
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.venue-map-block iframe { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════════════════════════
   RSVP SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.rsvp-full-section {
  background: var(--ivory);
  padding: 6rem 0;
}

.rsvp-already-notice {
  text-align: center;
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.rsvp-form { }

/* Attending cards */
.rsvp-attend-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.attend-card {
  position: relative;
  cursor: pointer;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.attend-card input[type="radio"] { position: absolute; opacity: 0; }

.attend-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-align: center;
}

.attend-icon  { font-size: 2rem; margin-bottom: 0.5rem; }
.attend-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.attend-sub   { font-size: 0.78rem; color: var(--text-muted); }

.attend-yes:has(input:checked) { border-color: var(--success); box-shadow: 0 0 0 3px rgba(76,175,125,0.15); }
.attend-no:has(input:checked)  { border-color: var(--error);   box-shadow: 0 0 0 3px rgba(224,112,112,0.15); }

/* RSVP blocks */
.rsvp-block {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.rsvp-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.rsvp-field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.75rem; }
.rsvp-field:last-child { margin-bottom: 0; }

.rsvp-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.rsvp-field label span { text-transform: none; font-weight: 400; }

.rsvp-field input[type="text"],
.rsvp-field input[type="number"],
.rsvp-field textarea {
  padding: 0.6rem 0.8rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s;
  width: 100%;
}
.rsvp-field input:focus, .rsvp-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.rsvp-field textarea { resize: vertical; min-height: 100px; }

/* Dietary chips */
.diet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.diet-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #eee;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.diet-chip:has(input:checked) { border-color: var(--gold); background: #fdf9f2; }
.diet-chip input { display: none; }

/* Logistics toggles */
.logistics-row { display: flex; flex-direction: column; gap: 0; }

.logistics-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.logistics-item:last-child { border-bottom: none; }

/* Toggle switch */
.toggle { position: relative; display: inline-block; cursor: pointer; }
.toggle input { display: none; }
.toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  background: #ddd;
  border-radius: 24px;
  transition: background 0.2s;
  position: relative;
}
.toggle input:checked ~ .toggle-track { background: var(--gold); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle input:checked ~ .toggle-track .toggle-thumb { transform: translateX(20px); }

/* Submit row */
.rsvp-submit {
  text-align: center;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--nav-bg);
  text-align: center;
  padding: 3rem 1rem;
}

.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-date, .footer-venue {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PHOTO BREAKS
   ═══════════════════════════════════════════════════════════════════════════ */

.photo-break {
  height: 55vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break-sm { height: 35vh; min-height: 200px; }

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break-quote {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   VENUE FEATURES
   ═══════════════════════════════════════════════════════════════════════════ */

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.feat {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 99px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GETTING THERE
   ═══════════════════════════════════════════════════════════════════════════ */

.travel-section {
  background: var(--white);
  padding: 6rem 0 4rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.travel-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #ede8e0;
  transition: box-shadow 0.2s;
}
.travel-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.travel-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.travel-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.travel-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.travel-link-row { margin-top: 0.75rem; }
.travel-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.travel-link:hover { color: var(--gold-dark); }

.travel-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.travel-map iframe { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   ACCOMMODATION
   ═══════════════════════════════════════════════════════════════════════════ */

.stay-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #1c1f2e;
}

.stay-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stay-inner { position: relative; }

.stay-intro {
  text-align: center;
  max-width: 560px;
  margin: -1rem auto 2.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.hotel-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.hotel-card:hover { background: rgba(255,255,255,0.12); }

.hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.hotel-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.hotel-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.hotel-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.hotel-link:hover { color: var(--gold-light); }

.stay-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GOOD TO KNOW
   ═══════════════════════════════════════════════════════════════════════════ */

.know-section {
  background: var(--ivory);
  padding: 6rem 0;
}

.know-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.know-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.know-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.know-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.know-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER (updated)
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-divider span:not(.footer-diamond) {
  width: 80px;
  height: 1px;
  background: rgba(201,169,110,0.4);
}
.footer-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.footer-addr {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   THANKS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.thanks-page {
  background: var(--ivory);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thanks-box { max-width: 480px; text-align: center; }
.thanks-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.thanks-box h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.thanks-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem; }

.thanks-details {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border: 1px solid var(--gold-light);
  text-align: left;
}
.thanks-details p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0.35rem; }
.thanks-details strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════════════════
   ADMIN UI
   ═══════════════════════════════════════════════════════════════════════════ */

.admin-body { background: #f0ede8; min-height: 100vh; }

.admin-nav {
  background: var(--nav-bg);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-brand {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover  { background: rgba(255,255,255,0.08); color: white; }
.nav-links a.active { background: rgba(201,169,110,0.2); color: var(--gold-light); }
.nav-links a.logout { color: #c77; margin-left: 0.5rem; }
.nav-links a.logout:hover { background: rgba(200,100,100,0.15); color: #e88; }

.admin-main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }

/* Flash */
.flash {
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  border-left: 4px solid;
}
.flash-success { background: #edf7f1; border-color: var(--success); color: #2e6b4f; }
.flash-error   { background: #fdf0f0; border-color: var(--error);   color: #7a3030; }

/* Cards */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  margin-bottom: 1.5rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.stat-card.attending .stat-number { color: var(--success); }
.stat-card.declined  .stat-number { color: var(--error); }
.stat-card.pending   .stat-number { color: var(--gold); }

/* Page header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
}

/* Admin buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold    { background: var(--gold); color: white; }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-danger  { background: var(--error); color: white; }
.btn-dark    { background: var(--nav-bg); color: white; }
.btn-sm      { padding: 0.3rem 0.7rem; font-size: 0.8rem; }

/* Tables */
.guest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.guest-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 2px solid #eee;
}
.guest-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.guest-table tr:hover td { background: #fafaf8; }

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.73rem;
  font-weight: 700;
}
.status-attending { background: #edf7f1; color: #2e6b4f; }
.status-declined  { background: #fdf0f0; color: #7a3030; }
.status-pending   { background: #fdf8ec; color: #7a5a10; }

/* Forms (admin) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.3rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Detail grid */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; }
.detail-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
}
.detail-item span { font-size: 0.95rem; color: var(--text); }

/* QR block */
.qr-block {
  text-align: center;
  padding: 1rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px dashed var(--gold-light);
}
.qr-block img { width: 140px; height: 140px; margin: 0 auto; }
.qr-block p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Login */
.login-page {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-box {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.login-box h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.login-box p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.login-box input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
}
.login-box input:focus { outline: none; border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
  .no-print,
  .site-nav,
  .hero-scroll-cue,
  .hero-countdown,
  .rsvp-full-section,
  .site-footer,
  .day-section,
  .venue-section { display: none !important; }

  .site-body { background: white; }

  .hero {
    background-attachment: scroll !important;
    height: 100vh;
    page-break-after: always;
  }

  .inv-section {
    padding: 3rem 0;
    page-break-after: always;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(18,19,26,0.97);
    padding: 1rem 0;
    gap: 0;
    z-index: 100;
  }
  .site-nav-links.nav-open { display: flex; }
  .site-nav-links a {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .section-heading { font-size: 2rem; }
  .venue-gallery { grid-template-columns: 1fr; max-height: none; }
  .venue-photo-main { max-height: 280px; overflow: hidden; }
  .venue-photo-grid { display: none; }
  .venue-strip { grid-template-columns: repeat(3, 1fr); height: 120px; }
  .venue-details { grid-template-columns: 1fr; gap: 1.5rem; }
  .venue-map-block { height: 250px; }
  .rsvp-attend-row { grid-template-columns: 1fr; }
  .rsvp-row-2 { grid-template-columns: 1fr; }
  .diet-grid { grid-template-columns: 1fr 1fr; }
  .timeline { padding: 0 1rem; }
  .tl-item { grid-template-columns: 70px 24px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .admin-nav { flex-wrap: wrap; height: auto; padding: 0.75rem 1rem; gap: 0.5rem; }
  .travel-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .know-grid { grid-template-columns: 1fr; }
  .photo-break { background-attachment: scroll; }
  .day-bg { background-attachment: scroll; }
  .stay-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-names { font-size: 3rem; }
  .container, .container-sm { padding: 0 1.25rem; }
  .inv-actions { flex-direction: column; align-items: center; }
}
