/* public/style.css */
:root {
  /* ── Seraphina Grace palette ── */
  --ink:         #1a1c1c;   /* soft charcoal (on-surface) */
  --ink-light:   #4f4445;   /* warm grey (on-surface-variant) */
  --bg:          #f7f3f1;   /* warm canvas */
  --cream:       #f4efe9;
  --off-white:   #ffffff;   /* elevated card surface */
  --blush-light: #fadadd;   /* soft blush surface / hairline */
  --blush-mid:   #70585b;   /* primary accent (mauve-rose) */
  --blush-dark:  #574144;   /* deeper accent / links */
  --sage:        #5e604d;   /* secondary olive (used sparingly) */
  --gold:        #ad8a3c;   /* champagne gold */
  --gold-soft:   rgba(173,138,60,0.40);
  --gold-glow:   rgba(173,138,60,0.16);
  --blush-glow:  rgba(112,88,91,0.18);
  --line-soft:   #cdbfc0;   /* soft input underline */
  --shadow-warm: 0 14px 34px -16px rgba(112,88,91,0.26), 0 2px 8px -4px rgba(112,88,91,0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush-mid) 50%, var(--sage) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 40px 52px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-bg.loaded { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.58) 100%);
}
.hero-nav {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-logo {
  height: 90px;
  width: auto;
  max-width: 340px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px 16px;
  backdrop-filter: blur(4px);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 62px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 18px;
}
.hero-date {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 38px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: rgba(255,255,255,0.15); }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-cta-row .hero-cta { margin-top: 0; }
.hero-cta-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  border-style: dashed;
  background: rgba(255,255,255,0.04);
}
.hero-cta-disabled:hover { background: rgba(255,255,255,0.04); }

/* ── SHARED SECTION ── */
.section {
  padding: var(--space-2xl) var(--space-xl);
  max-width: 720px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush-mid);
  text-align: center;
  margin-bottom: 32px;
}

/* ── REGISTRY ── */
.registry-card {
  text-align: center;
  padding: 36px 32px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--blush-light);
}
.registry-icon { font-size: 40px; margin-bottom: 16px; }
.registry-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 460px;
  margin: 0 auto 28px;
}
.registry-btn {
  display: inline-block;
  padding: 13px 38px;
  border-radius: 40px;
  background: var(--blush-mid);
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.registry-btn:hover { background: var(--blush-dark); }

/* ── EVENT DETAILS ── */
.event-cards { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--blush-light);
}
.event-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-light), var(--blush-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.event-info-title {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 6px;
}
.event-info-sub {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery-section { padding: 0 var(--space-xl) var(--space-2xl); max-width: 720px; margin: 0 auto; }
.gallery-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blush-light), var(--blush-mid), var(--sage));
  margin-bottom: 10px;
  cursor: pointer;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.gallery-counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.25);
  padding: 3px 12px;
  border-radius: 20px;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-arrow:hover { background: rgba(0,0,0,0.5); }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }
.gallery-thumbs { display: flex; gap: 6px; }
.gallery-thumb {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.gallery-thumb.active { border-color: var(--blush-mid); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 32px;
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
}

/* ── MAP LINK ── */
.map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blush-dark);
  text-decoration: none;
  padding: 7px 18px;
  border: 1px solid var(--blush-light);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.map-link:hover { background: var(--blush-light); border-color: var(--blush-mid); }

/* ── AGENDA ── */
.agenda-section { border-top: 1px solid var(--blush-light); }

.agenda-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.agenda-block {
  padding: 24px 28px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--blush-light);
  margin-bottom: 32px;
}

.agenda-block-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 6px;
}

.agenda-tradition {
  font-family: var(--font-display);
  font-size: 21px;
  margin-bottom: 12px;
}

.agenda-meta-row {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 2;
}

.agenda-what-to-expect,
.ceremony-steps-section {
  margin-bottom: 32px;
}

.agenda-sub-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 16px;
}

.agenda-intro-text {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 62ch;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-list li {
  font-size: 15px;
  color: var(--ink-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.expect-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--blush-mid);
  font-size: 22px;
  line-height: 0.9;
  top: 2px;
}

.ceremony-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--blush-light);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}
.ceremony-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--blush-light);
}
.ceremony-step:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-light), var(--blush-mid));
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}
.step-body { display: flex; flex-direction: column; gap: 5px; }
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
}
.step-desc {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.65;
}

.notes-box {
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,197,181,0.12), rgba(212,165,181,0.08));
  border: 1px solid rgba(168,197,181,0.5);
  margin-bottom: 32px;
}
.notes-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.notes-box li {
  font-size: 15px;
  color: var(--ink-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.notes-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 13px;
  top: 3px;
}

.reception-block .agenda-block-eyebrow { color: var(--blush-dark); }

.reception-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.reception-list li {
  font-size: 15px;
  color: var(--ink-light);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}
.reception-list li::before {
  content: '🌸';
  position: absolute;
  left: 0;
  font-size: 13px;
}

/* ── RSVP ── */
.rsvp-section {
  background: linear-gradient(160deg, var(--off-white), #fce8ef);
  border-top: 1px solid var(--blush-light);
  padding: var(--space-2xl) var(--space-xl);
}
.rsvp-inner { max-width: 520px; margin: 0 auto; }
.rsvp-intro { text-align: center; margin-bottom: 36px; }
.rsvp-intro h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  margin-bottom: 10px;
}
.rsvp-intro p { font-size: 15px; color: var(--ink-light); }
.rsvp-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 12px; }
.guest-row {
  border-top: 1px solid rgba(212,165,181,0.3);
  padding-top: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guest-row-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush-mid);
}
.form-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush-mid);
}
.form-input {
  padding: 13px 16px;
  border-radius: 9px;
  border: 1px solid var(--blush-light);
  background: white;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blush-mid); }
.form-input::placeholder { color: #ccc; }
textarea.form-input { resize: vertical; min-height: 90px; }
.rsvp-btn {
  padding: 16px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--blush-mid), var(--blush-dark));
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(212,165,181,0.4);
  transition: opacity 0.2s;
}
.rsvp-btn:disabled { opacity: 0.6; cursor: default; }
.rsvp-confirm {
  text-align: center;
  padding: 52px 0;
  display: none;
}
.rsvp-confirm .confirm-icon { font-size: 44px; margin-bottom: 18px; }
.rsvp-confirm h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 10px;
}
.rsvp-confirm p { font-size: 15px; color: var(--ink-light); }

/* ── FOOTER ── */
footer {
  padding: 28px;
  text-align: center;
  border-top: 1px solid var(--blush-light);
}
footer p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--blush-mid);
}

/* ── ADD TO CALENDAR ── */
.add-calendar { text-align: center; margin-top: 28px; }
.add-calendar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 14px;
}
.add-calendar-sub { font-size: 13px; color: var(--ink-light); margin-bottom: 14px; }
.add-calendar-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.add-calendar-btns .map-link { margin-top: 0; }

/* ── VISIT TEASER (homepage) ── */
.visit-teaser {
  text-align: center;
  padding: 34px 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,197,181,0.16), rgba(212,165,181,0.10));
  border: 1px solid rgba(168,197,181,0.55);
}
.visit-teaser .registry-icon { font-size: 38px; margin-bottom: 12px; }
.visit-teaser h3 { font-family: var(--font-display); font-size: 23px; margin-bottom: 8px; }
.visit-teaser p {
  font-size: 14px;
  color: var(--ink-light);
  max-width: 440px;
  margin: 0 auto 22px;
  line-height: 1.65;
}

/* ── VISIT GUIDE FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--blush-light);
}
.filter-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.filter-toggles { display: flex; gap: 8px; }
.filter-chip, .filter-toggle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--blush-light);
  background: white;
  color: var(--ink-light);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-chip:hover, .filter-toggle:hover { border-color: var(--blush-mid); }
.filter-chip.active { background: var(--blush-mid); color: white; border-color: var(--blush-mid); }
.filter-toggle.active { background: var(--sage); color: white; border-color: var(--sage); }
.filter-price-group { display: inline-flex; gap: 6px; padding-right: 8px; margin-right: 2px; border-right: 1px solid var(--blush-light); }
.filter-price { min-width: 36px; text-align: center; padding: 7px 10px; }
@media (max-width: 640px) {
  .filter-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    padding: 11px 0;
  }
  .filter-chips,
  .filter-toggles {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 2px 18px;
    /* soft fade hint that the row scrolls */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  }
  .filter-chips::-webkit-scrollbar,
  .filter-toggles::-webkit-scrollbar { display: none; }
  .filter-chip, .filter-toggle {
    flex: 0 0 auto;
    padding: 9px 16px;
    font-size: 12px;
  }
  .filter-price-group { border-right: none; padding-right: 0; margin-right: 0; gap: 6px; }
  .filter-price { padding: 9px 13px; }
}

/* ── VISIT GUIDE PAGE ── */
.guide-hero {
  background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush-mid) 55%, var(--sage) 100%);
  padding: 52px 40px 46px;
  text-align: center;
  color: white;
}
.guide-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.guide-back:hover { color: white; }
.guide-hero .hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.guide-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 7vw, 46px);
  margin-bottom: 14px;
}
.guide-hero .guide-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.guide-section { max-width: 880px; margin: 0 auto; padding: 56px 40px 0; }
.guide-section.last { padding-bottom: 64px; }
.guide-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 28px);
  text-align: center;
  margin-bottom: 6px;
}
.guide-section-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--blush-light);
}
.guide-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}
.guide-card-name { font-family: var(--font-display); font-size: 20px; line-height: 1.25; }
.guide-card-price { font-size: 13px; color: var(--sage); font-weight: 600; white-space: nowrap; }
.guide-card-meta {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.near-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: white;
  background: var(--sage);
  border-radius: 20px;
  padding: 2px 9px;
  margin-left: 7px;
  vertical-align: middle;
}
.guide-card-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.guide-card-good {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 16px;
}
.guide-card-good strong { color: var(--blush-dark); font-weight: 600; }
.guide-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.guide-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blush-dark);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--blush-light);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.guide-links a:hover { background: var(--blush-light); border-color: var(--blush-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-section { padding: 44px 24px 0; }
  .guide-hero { padding: 42px 24px 34px; }
}
@media (max-width: 560px) {
  .section { padding: 48px 24px; }
  .gallery-section { padding: 0 24px 48px; }
  .rsvp-section { padding: 48px 24px; }
  .form-row { flex-direction: column; }
  .hero { padding: 28px 24px 40px; }
  .event-card { padding: 18px 20px; gap: 16px; }
  .agenda-block { padding: 20px 22px; }
  .ceremony-step { padding: 16px 18px; }
  .notes-box { padding: 18px 20px; }
}

/* ============================================================
   SERAPHINA GRACE — soft minimalism + glassmorphism theme layer
   ============================================================ */

/* Editorial serif weights for headlines */
.hero-title { font-weight: 700; letter-spacing: -0.01em; }
.guide-hero h1 { font-weight: 700; letter-spacing: -0.01em; }
.agenda-title, .rsvp-intro h2, .guide-section-title { font-weight: 600; }
.event-info-title, .agenda-tradition, .step-title,
.guide-card-name, .visit-teaser h3, .rsvp-confirm h3 { font-weight: 600; }

/* Refined hero gradients (blush → mauve → cream) */
.hero { background: linear-gradient(160deg, #f7dde0 0%, #b8979b 55%, #efe6dd 100%); }
.guide-hero { background: linear-gradient(150deg, #f6d9dc 0%, #b79498 52%, #efe7dd 100%); }

/* Elevated surfaces: pure white, champagne-gold hairline, diffused warm shadow */
.event-card, .registry-card, .agenda-block, .ceremony-steps, .guide-card {
  background: var(--off-white);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-warm);
}
.guide-card, .event-card, .registry-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.guide-card:hover, .event-card:hover, .registry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px -18px rgba(112,88,91,0.32), 0 3px 10px -5px rgba(112,88,91,0.14);
}
.agenda-section, footer { border-top-color: var(--gold-soft); }
.gallery-main { border-radius: 20px; box-shadow: var(--shadow-warm); }

/* Champagne-gold accents */
.guide-card-price { color: var(--gold); }
.notes-box li::before { color: var(--gold); }
.near-tag {
  background: linear-gradient(135deg, #d9b75a, var(--gold));
  color: #2c2102;
  box-shadow: 0 1px 4px rgba(173,138,60,0.4);
}

/* Primary buttons: mauve fill, gentle lift + glow */
.registry-btn, .rsvp-btn {
  background: var(--blush-mid);
  box-shadow: 0 8px 20px -10px var(--blush-glow);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}
.rsvp-btn { background: linear-gradient(135deg, #7d6266, var(--blush-mid)); box-shadow: 0 8px 22px -10px var(--blush-glow); }
.registry-btn:hover, .rsvp-btn:hover:enabled {
  transform: translateY(-2px);
  background: var(--blush-dark);
  box-shadow: 0 14px 28px -10px rgba(112,88,91,0.42);
}

/* Secondary / link buttons: champagne-gold outline */
.map-link, .guide-links a { color: var(--blush-dark); border-color: var(--gold-soft); }
.map-link:hover, .guide-links a:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--blush-dark); }

/* Glassmorphism filter bar */
.filter-bar {
  background: rgba(252,250,249,0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--gold-soft);
}
.filter-chip, .filter-toggle, .filter-price { border-color: var(--gold-soft); background: rgba(255,255,255,0.7); }
.filter-chip.active { background: var(--blush-mid); border-color: var(--blush-mid); color: #fff; }
.filter-toggle.active, .filter-price.active { background: var(--gold); border-color: var(--gold); color: #2c2102; }
.filter-price-group { border-right-color: var(--gold-soft); }

/* Minimal inputs: bottom-border + soft blush focus glow */
.form-input {
  border: none;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  padding: 12px 4px;
}
.form-input:focus {
  border-bottom-color: var(--blush-mid);
  box-shadow: 0 9px 16px -13px var(--blush-glow);
}
.form-input::placeholder { color: #b6abac; }
textarea.form-input { border: 1px solid var(--gold-soft); border-radius: 12px; padding: 12px 14px; }

/* Warm-retinted soft surfaces */
.rsvp-section { background: linear-gradient(165deg, #ffffff 0%, #f6ece9 100%); border-top-color: var(--gold-soft); }
.notes-box { background: linear-gradient(135deg, rgba(173,138,60,0.09), rgba(112,88,91,0.05)); border-color: var(--gold-soft); }
.visit-teaser {
  background: linear-gradient(135deg, rgba(250,218,221,0.55), rgba(244,239,233,0.78));
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-warm);
}

/* Soft-fade image loads + micro-interactions */
.gallery-main img, .hero-bg { transition: opacity .3s ease-in-out; }
.registry-icon, .confirm-icon, .event-icon { transition: transform .25s ease; }
.registry-card:hover .registry-icon, .event-card:hover .event-icon { transform: scale(1.08); }

/* Champagne-gold line icons */
.line-icon { width: 22px; height: 22px; display: block; color: var(--gold); }
.line-icon.big { width: 40px; height: 40px; margin: 0 auto; }
.event-icon { background: rgba(173,138,60,0.10); border: 1px solid var(--gold-soft); }
.registry-icon, .confirm-icon { color: var(--gold); line-height: 0; }
.reception-list li::before { content: '✦'; color: var(--gold); font-size: 11px; top: 3px; }

/* Airy floating logo */
@keyframes seraphFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.hero-logo { animation: seraphFloat 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
  .guide-card, .event-card, .registry-card, .registry-btn, .rsvp-btn,
  .registry-icon, .event-icon { transition: none; }
}
