/* ═══════════════════════════════════════════════════════════════
   Connor & Caroline Wedding — Design System
   Aesthetic: Romantic minimalism · Ivory, Sage, Dusty Rose
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --ivory:        #faf7f2;
  --ivory-dark:   #f0ebe1;
  --ivory-mid:    #e8e0d5;
  --sage:         #7d9b76;
  --sage-light:   #a8c4a2;
  --sage-dark:    #5a7555;
  --rose:         #c9897a;
  --rose-light:   #e0b5ae;
  --rose-muted:   #d4a89f;
  --charcoal:     #2c2c2c;
  --ink:          #4a4542;
  --muted:        #8a8178;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', sans-serif;

  --radius:       4px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(44, 44, 44, 0.08);
  --shadow-lg:    0 12px 48px rgba(44, 44, 44, 0.12);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Decorative Corners ─────────────────────────────────────────── */
.corner {
  position: fixed;
  width: 120px;
  height: 120px;
  color: var(--sage);
  pointer-events: none;
  z-index: 1;
}
.corner--tl { top: 0; left: 0; }
.corner--tr { top: 0; right: 0; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory-mid);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.7; }

.logo-monogram {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.logo-date {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.site-nav {
  position: fixed;
  top: 0;
  right: max(2rem, calc(50vw - 518px));
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 101;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 1px;
  background: var(--rose);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: var(--rose); }
.nav-link.active { color: var(--rose); }

.nav-link--cta {
  background: var(--sage);
  color: white !important;
  padding: 0.5rem 1.2rem;
  letter-spacing: 0.16em;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--sage-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Main ───────────────────────────────────────────────────────── */
.site-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Flash Messages ─────────────────────────────────────────────── */
.flash-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(420px, 90vw);
  animation: slideDown 0.35s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.flash--success { background: #f0f7ef; border: 1px solid var(--sage-light); color: var(--sage-dark); }
.flash--error   { background: #fdf0ee; border: 1px solid var(--rose-light); color: #a05040; }
.flash--info    { background: #f5f3f0; border: 1px solid var(--ivory-mid); color: var(--ink); }
.flash-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.flash-close:hover { opacity: 1; }

/* ── Home Nav Cards ─────────────────────────────────────────────── */
.home-nav-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Page Hero ──────────────────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.page-hero__subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  max-width: 480px;
  margin: 0 auto;
}
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 220px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ivory-mid);
}
.divider__gem {
  color: var(--rose-muted);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
}

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 640px;
}

/* ── Home Page ──────────────────────────────────────────────────── */
.home-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Soft radial background bloom */
.home-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(201, 137, 122, 0.07) 0%,
    rgba(125, 155, 118, 0.05) 50%,
    transparent 75%);
  pointer-events: none;
}

.home-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.home-hero__names {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.home-hero__ampersand {
  color: var(--rose);
  display: block;
  font-size: 0.7em;
}
.home-hero__date {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.home-hero__photo-frame {
  width: min(360px, 80vw);
  aspect-ratio: 3/4;
  background: var(--ivory-dark);
  border: 1px solid var(--ivory-mid);
  margin: 2.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeUp 0.8s 0.45s ease both;
  box-shadow: var(--shadow-lg);
}
.home-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}
.photo-placeholder__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.photo-placeholder p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.home-hero__tagline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 420px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--sage);
  color: white;
  animation: fadeUp 0.8s 0.75s ease both;
}
.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 117, 85, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ivory-mid);
}
.btn--outline:hover {
  border-color: var(--rose-light);
  color: var(--rose);
  transform: translateY(-2px);
}

/* Info strip */
.info-strip {
  background: var(--ivory-dark);
  border-top: 1px solid var(--ivory-mid);
  border-bottom: 1px solid var(--ivory-mid);
  padding: 3rem 2rem;
}
.info-strip__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.info-strip__item {}
.info-strip__label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.info-strip__value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
}

/* ── Schedule Page ──────────────────────────────────────────────── */
.timeline {
  padding: 2rem 0 4rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ivory-mid);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease both;
}
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-time    { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-empty   { grid-column: 1; }
.timeline-item:nth-child(odd)  .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd)  .timeline-time    { grid-column: 2; }
.timeline-item:nth-child(odd)  .timeline-empty   { grid-column: 3; }
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-light);
  border: 2px solid var(--rose);
  flex-shrink: 0;
  justify-self: center;
}
.timeline-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.timeline-time__text {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
  font-weight: 400;
}
.timeline-content {}
.timeline-content__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.timeline-content__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Location Page ──────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.location-card {
  background: white;
  border: 1px solid var(--ivory-mid);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-card__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.location-card__name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.location-card__address {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.location-map-placeholder {
  background: var(--ivory-dark);
  border: 1px solid var(--ivory-mid);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── RSVP Page ──────────────────────────────────────────────────── */
.rsvp-form-wrap {
  background: white;
  border: 1px solid var(--ivory-mid);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  margin: 2rem auto 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-label span {
  color: var(--rose);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ivory-mid);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage-light);
  box-shadow: 0 0 0 3px rgba(125, 155, 118, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  font-size: 0.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Radio attendance */
.attendance-options {
  display: flex;
  gap: 1rem;
}
.attendance-option {
  flex: 1;
}
.attendance-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.attendance-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--ivory-mid);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all var(--transition);
  background: var(--ivory);
}
.attendance-option input:checked + label {
  border-color: var(--sage);
  background: rgba(125, 155, 118, 0.08);
  color: var(--sage-dark);
}
.attendance-option label:hover {
  border-color: var(--sage-light);
  color: var(--sage);
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}
.btn--submit {
  background: var(--sage);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}
.btn--submit:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 117, 85, 0.3);
}
.btn--submit:active { transform: translateY(0); }

/* ── Registry Page ──────────────────────────────────────────────── */
.registry-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}
.registry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.registry-card {
  background: white;
  border: 1px solid var(--ivory-mid);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.registry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.registry-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.registry-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.registry-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ivory-dark);
  border-top: 1px solid var(--ivory-mid);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-names {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.footer-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-divider {
  color: var(--rose-muted);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
}
.footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── Error Page ─────────────────────────────────────────────────── */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 2rem;
}
.error-code {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-style: italic;
  color: var(--ivory-mid);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-message {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 3rem 1rem 2rem;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .nav-link { font-size: 0.9rem; }

  /* ── Timeline — keep zigzag, just compact ── */
  .timeline-item {
    gap: 0.4rem;
    margin-bottom: 1.75rem;
  }
  .timeline-content__title { font-size: 1.05rem; }
  .timeline-content__desc  { font-size: 0.72rem; line-height: 1.5; }
  .timeline-time__text     { font-size: 0.58rem; }
  .timeline-empty {
    display: flex;
    align-items: center;
  }
  .timeline-empty img {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain;
  }

  .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .rsvp-form-wrap { padding: 2rem 1.5rem; }
  .corner { width: 80px; height: 80px; }

  /* Home page — nav cards stack 2×2, centered */
  .home-nav-cards {
    grid-template-columns: repeat(2, 1fr);
    width: min(340px, 82vw);
    margin-left: auto;
    margin-right: auto;
  }

  /* Home hero — ensure full width and centered content */
  .home-hero-inner {
    padding: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Venue watercolor section — tighten card on mobile */
  .venue-card {
    padding: 2rem 1.75rem !important;
    margin-top: 4vh !important;
    width: calc(100% - 3rem);
  }
}
