/* ═══════════════════════════════════════════════
   BALIAN & SOPHIE – Wildflower Wedding Theme
   ═══════════════════════════════════════════════ */

:root {
  --cream: #FDFAF5;
  --cream-dark: #F5EFE3;
  --sage: #7A9E7E;
  --sage-light: #A8C5A0;
  --sage-dark: #5A7D5E;
  --rose: #C4909A;
  --rose-light: #E8C4CA;
  --rose-dark: #A06878;
  --gold: #C9A96E;
  --gold-light: #E8D4A8;
  --text: #3A3228;
  --text-muted: #8A7D70;
  --text-light: #B5A898;
  --border: #E8DDD0;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --shadow: 0 2px 20px rgba(58,50,40,0.08);
  --shadow-lg: 0 8px 40px rgba(58,50,40,0.12);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--rose-dark); }

/* ── Invite floral decorations (kept for invite page) ── */
.invite-floral {
  position: absolute;
  left: 0; right: 0;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.5;
}

.invite-floral--top {
  top: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cg fill='none' stroke='%237A9E7E' stroke-width='1.5' opacity='0.6'%3E%3Ccircle cx='100' cy='80' r='12' fill='%23C4909A' opacity='0.4'/%3E%3Cline x1='100' y1='80' x2='100' y2='200'/%3E%3Ccircle cx='200' cy='60' r='10' fill='%23A8C5A0' opacity='0.5'/%3E%3Cline x1='200' y1='60' x2='200' y2='200'/%3E%3Ccircle cx='1100' cy='70' r='14' fill='%23E8C4CA' opacity='0.4'/%3E%3Cline x1='1100' y1='70' x2='1100' y2='200'/%3E%3C/g%3E%3C/svg%3E");
  background-position: top center;
}

.invite-floral--bottom {
  bottom: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cg fill='none' stroke='%237A9E7E' stroke-width='1.5' opacity='0.5'%3E%3Ccircle cx='300' cy='100' r='12' fill='%23C4909A' opacity='0.3'/%3E%3Cline x1='300' y1='100' x2='300' y2='0'/%3E%3Ccircle cx='900' cy='90' r='10' fill='%23A8C5A0' opacity='0.4'/%3E%3Cline x1='900' y1='90' x2='900' y2='0'/%3E%3C/g%3E%3C/svg%3E");
  background-position: bottom center;
  transform: rotate(180deg);
}


/* ── Public Layout ── */
.public-main { min-height: 100vh; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/img/verlobung/hero.jpg');
  background-size: cover;
  background-position: center 65%;
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,10,5,0.42) 0%,
    rgba(15,10,5,0.18) 45%,
    rgba(15,10,5,0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-amp { color: rgba(255,255,255,0.9); }

.hero-surname {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 24px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 28px;
}

.divider-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
}

.divider-icon { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.hero-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.date-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.date-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
}

.date-venue {
  font-size: 0.82rem;
  color: rgba(201,169,110,0.9);
}

.date-separator { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

.hero-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 12px 18px;
  backdrop-filter: blur(8px);
}

.countdown-item span:first-child {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.cd-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

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

/* ── Sections ── */
.section {
  padding: 80px 24px;
}

.section:nth-child(even) {
  background: rgba(255,255,255,0.5);
}

.section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage-light);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.2;
}

.story-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Schedule ── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.schedule-day {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.schedule-date {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rose-light);
}

.schedule-item {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.schedule-item:last-child { border-bottom: none; }

.schedule-time {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  white-space: nowrap;
  min-width: 70px;
}

.schedule-event {
  color: var(--text);
  font-size: 0.95rem;
}

/* ── Location ── */
.location-address {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.location-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--rose);
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ── Gifts ── */
.gifts-text {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 28px;
}

/* ── FAQ ── */
.faq-list {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream-dark); }
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  font-size: 1.4rem;
  color: var(--sage);
  transition: transform 0.2s;
  font-weight: 300;
}

.faq-answer {
  padding: 0 24px 18px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover { background: var(--sage-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--sage);
  color: var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-xs { padding: 4px 10px; font-size: 0.75rem; border-radius: 6px; }
.btn-success { background: #4CAF50; color: white; }
.btn-danger { background: #e53935; color: white; }

/* ── Floating Nav ── */
.floating-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
}

.floating-nav.visible { opacity: 1; pointer-events: all; }

.floating-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}
.floating-nav a:hover { color: var(--sage); }

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 48px 24px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
}

.footer-floral {
  font-size: 1.5rem;
  color: var(--rose-light);
  margin-bottom: 12px;
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── Invite Page ── */
.invite-page { min-height: 100vh; }

.invite-hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(160deg, var(--cream) 0%, #F8F0E6 100%);
  overflow: hidden;
}

.invite-hero-content { position: relative; z-index: 2; }

.invite-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.invite-names {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--text);
}

.invite-surname {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.invite-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.invite-success {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.invite-events {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.invite-event-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.invite-event-card--main {
  border-color: var(--rose-light);
  background: linear-gradient(to right, var(--white), #FDF5F7);
}

.event-date-badge {
  min-width: 64px;
  height: 64px;
  background: var(--sage);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.event-date-badge--main { background: var(--rose); }

.event-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.invite-rsvp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.rsvp-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.rsvp-deadline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.rsvp-guests { display: grid; gap: 20px; margin-bottom: 24px; }

.rsvp-guest-row {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.rsvp-guest-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rsvp-guest-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.rsvp-event-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--sage-light);
  color: var(--sage-dark);
  letter-spacing: 0.05em;
}

.rsvp-event-badge--party { background: var(--rose-light); color: var(--rose-dark); }

.rsvp-attendance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.rsvp-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  font-size: 0.9rem;
}

.rsvp-option:has(input:checked) { border-color: var(--sage); background: rgba(122,158,126,0.05); }
.rsvp-yes:has(input:checked) { border-color: var(--sage); }
.rsvp-no:has(input:checked) { border-color: var(--rose); }

.rsvp-option input { accent-color: var(--sage); }

.rsvp-dietary input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
}

.rsvp-submit { margin-top: 8px; }

.rsvp-summary { margin-top: 16px; }
.rsvp-summary h3 { font-family: var(--font-serif); margin-bottom: 12px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.summary-name { font-weight: 500; }

.status-yes { color: var(--sage-dark); font-weight: 600; }
.status-no { color: var(--rose-dark); font-weight: 600; }
.status-pending { color: var(--text-muted); }

.summary-edit-hint { font-size: 0.85rem; color: var(--text-muted); margin: 12px 0; }

.invite-wishes {
  text-align: center;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.invite-signature { font-style: italic; font-size: 1.5rem; color: var(--text); margin-top: 8px; }

/* ── Login Page ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE3D5 100%);
  padding: 24px;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-floral { font-size: 2rem; color: var(--rose-light); display: block; margin-bottom: 8px; }

.login-logo h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
}

.login-sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

.login-form .form-group { margin-bottom: 20px; }
.login-back { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Alerts ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.alert-warning { background: #FEF9C3; color: #854D0E; border: 1px solid #FEF08A; }

/* ── Error Page ── */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
}


/* ── Gallery ── */
.gallery-section { background: var(--cream-dark); }

.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

.lightbox-close    { top: 20px; right: 20px; font-size: 1rem; }
.lightbox-prev     { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next     { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-download {
  position: absolute;
  top: 20px; right: 74px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background 0.2s;
}
.lightbox-download:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
  .hero-photo { height: 50vh; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ── Utilities ── */
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.text-yes { color: var(--sage-dark); }
.text-no { color: var(--rose-dark); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 20px; }
.mb-4 { margin-bottom: 20px; }
.p-4 { padding: 16px; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero-dates { flex-direction: column; gap: 16px; }
  .date-separator { display: none; }
  .hero-countdown { gap: 10px; }
  .countdown-item { padding: 10px 14px; }
  .botanical-corner { width: 160px; height: 160px; }
  .rsvp-attendance { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .floating-nav { display: none; }
}
