/* ============================================================
   OUR LIFE IN PAGES — Design System
   Blend: Fairytale warmth + Editorial elegance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --cream:          #fdf8f3;
  --cream-dark:     #f5ede3;
  --blush:          #f9e8e4;
  --blush-mid:      #e8cfc9;
  --rose:           #ac8e8e;
  --rose-dark:      #8a6e6e;
  --gold:           #c9a96e;
  --gold-light:     #e8d5b0;
  --gold-dark:      #9d7f4e;
  --charcoal:       #33302e;
  --charcoal-light: #5a5450;
  --charcoal-mid:   #8a8280;
  --white:          #ffffff;
  --border:         #e8ddd5;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --max-w: 1200px;
  --gutter: 24px;
  --section: 96px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(51,48,46,.06), 0 1px 2px rgba(51,48,46,.04);
  --shadow-md: 0 4px 16px rgba(51,48,46,.08), 0 2px 6px rgba(51,48,46,.04);
  --shadow-lg: 0 12px 40px rgba(51,48,46,.10), 0 4px 12px rgba(51,48,46,.06);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
}
.italic { font-style: italic; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }

/* ---- Divider ---- */
.divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--gold); font-size: .85rem; letter-spacing: .12em;
  margin: 24px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold-light);
}
.ornament { color: var(--gold); font-size: 1.1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: .85rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer;
  border: none; transition: all .25s ease;
}
.btn-primary {
  background: var(--rose-dark); color: var(--white);
}
.btn-primary:hover { background: #7a5f5f; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--rose-dark);
  border: 1.5px solid var(--rose-dark); padding: 11px 28px;
}
.btn-ghost:hover { background: var(--rose-dark); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: .78rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,248,243,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500; letter-spacing: .02em;
  color: var(--charcoal);
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .8rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--charcoal-light);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-actions .btn { padding: 10px 24px; font-size: .75rem; }
.nav-hamburger { display: none; cursor: pointer; background: none; border: none; }

/* ---- Hero ---- */
.hero {
  padding-top: 68px; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--gutter) 80px calc((100vw - var(--max-w))/2 + var(--gutter));
  padding-left: max(var(--gutter), calc((100vw - var(--max-w))/2 + var(--gutter)));
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 16px; font-weight: 300; }
.hero-content h1 em { color: var(--rose); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem; font-style: italic;
  color: var(--charcoal-light); margin-bottom: 16px;
}
.hero-desc { font-size: .95rem; color: var(--charcoal-light); max-width: 440px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative; overflow: hidden;
  background: var(--blush);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
}

/* ---- Feature Strip ---- */
.feature-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.feature-strip-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px; text-align: center;
}
.feature-strip-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.feature-strip-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-strip-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feature-strip-item h4 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal);
}
.feature-strip-item p { font-size: .82rem; color: var(--charcoal-light); line-height: 1.6; }

/* ---- Split Section ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 14px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.split-image .badge-icon { font-size: 1.5rem; }
.split-image .badge-text { font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.split-image .badge-sub { font-size: .72rem; color: var(--charcoal-light); }
.split-content { display: flex; flex-direction: column; gap: 20px; }
.split-content .eyebrow { margin-bottom: 4px; }
.split-content p { color: var(--charcoal-light); font-size: .95rem; line-height: 1.8; }

/* ---- Category Grid ---- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  cursor: pointer; transition: transform .3s;
}
.category-card:hover { transform: translateY(-4px); }
.category-card:hover .category-img { transform: scale(1.05); }
.category-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(51,48,46,.65) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.category-overlay h4 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.category-overlay p { color: rgba(255,255,255,.75); font-size: .78rem; margin-top: 4px; }

/* ---- Testimonial ---- */
.testimonial-section { background: var(--blush); padding: var(--section) 0; text-align: center; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic; font-weight: 300;
  max-width: 760px; margin: 0 auto 24px;
  line-height: 1.5; color: var(--charcoal);
}
.testimonial-author { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-dark); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 24px; }

/* ---- CTA Footer Section ---- */
.cta-section {
  background: var(--charcoal);
  padding: var(--section) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .eyebrow { color: var(--gold-light); margin-bottom: 16px; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section .italic { color: var(--gold-light); display: block; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 36px; }
.cta-section .btn-outline { border-color: var(--white); color: var(--white); }
.cta-section .btn-outline:hover { background: var(--white); color: var(--charcoal); }

/* ---- Footer ---- */
footer {
  background: var(--charcoal); color: rgba(255,255,255,.6);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .72rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: .8rem; transition: color .2s; }
.footer-social a:hover { color: var(--white); }

/* ---- Inner App Nav (sidebar pages) ---- */
.app-layout { display: flex; min-height: 100vh; padding-top: 68px; }
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: fixed; top: 68px; left: 0; bottom: 0;
  overflow-y: auto;
}
.sidebar-bride {
  padding: 0 20px 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blush-mid); margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--rose-dark);
  overflow: hidden;
}
.sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal); }
.sidebar-date { font-size: .75rem; color: var(--charcoal-light); margin-top: 2px; }
.sidebar-countdown {
  margin-top: 10px; background: var(--blush);
  border-radius: var(--r-md); padding: 8px 12px; text-align: center;
}
.sidebar-countdown .days { font-family: var(--font-display); font-size: 2rem; color: var(--rose-dark); line-height: 1; }
.sidebar-countdown .days-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal-light); }
.sidebar-nav { padding: 0 12px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-md);
  font-size: .83rem; font-weight: 500; color: var(--charcoal-light);
  transition: all .2s; cursor: pointer;
}
.sidebar-nav-item:hover { background: var(--cream); color: var(--charcoal); }
.sidebar-nav-item.active { background: var(--blush); color: var(--rose-dark); }
.sidebar-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-section-label {
  padding: 16px 26px 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--charcoal-mid);
}
.app-main { margin-left: 240px; flex: 1; padding: 40px; }
.app-header { margin-bottom: 36px; }
.app-header h2 { margin-bottom: 4px; }
.app-header p { color: var(--charcoal-light); font-size: .9rem; }

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.stat-card { text-align: center; }
.stat-card .stat-num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--rose-dark); line-height: 1;
}
.stat-card .stat-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal-light); margin-top: 6px; }

/* ---- Progress Bar ---- */
.progress-bar { height: 6px; background: var(--blush-mid); border-radius: var(--r-full); overflow: hidden; margin: 8px 0; }
.progress-fill { height: 100%; background: linear-gradient(to right, var(--rose), var(--gold)); border-radius: var(--r-full); transition: width .5s ease; }

/* ---- Checklist ---- */
.checklist-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--blush-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; margin-top: 2px;
}
.checklist-check.done { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--white); }
.checklist-item-content { flex: 1; }
.checklist-item-title { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.checklist-item-title.done { text-decoration: line-through; color: var(--charcoal-mid); }
.checklist-item-meta { font-size: .78rem; color: var(--charcoal-light); margin-top: 2px; }
.checklist-item-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
}
.badge-urgent { background: #ffe4e4; color: #c0392b; }
.badge-soon { background: var(--blush); color: var(--rose-dark); }
.badge-done { background: #e8f5e9; color: #2e7d32; }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th { padding: 12px 16px; text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal-light); border-bottom: 1px solid var(--border); }
td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }

/* ---- Tag / Pill ---- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 600;
}
.pill-green { background: #e8f5e9; color: #2e7d32; }
.pill-yellow { background: #fffde7; color: #f57f17; }
.pill-red { background: #fce4e4; color: #c0392b; }
.pill-blue { background: #e3f2fd; color: #1565c0; }
.pill-rose { background: var(--blush); color: var(--rose-dark); }

/* ---- Form ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .9rem; color: var(--charcoal); outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--rose); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Photo Grid ---- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.photo-item {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1;
  cursor: pointer; transition: transform .3s;
  background: var(--blush); position: relative;
}
.photo-item:hover { transform: scale(1.02); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-upload {
  border: 2px dashed var(--blush-mid); border-radius: var(--r-md);
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: all .2s; color: var(--charcoal-light);
  font-size: .82rem;
}
.photo-upload:hover { border-color: var(--rose); color: var(--rose-dark); background: var(--blush); }

/* ---- Registry card ---- */
.registry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.registry-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow .25s;
}
.registry-card:hover { box-shadow: var(--shadow-md); }
.registry-card-img { aspect-ratio: 4/3; background: var(--blush); overflow: hidden; }
.registry-card-img img { width: 100%; height: 100%; object-fit: cover; }
.registry-card-body { padding: 18px; }
.registry-card-title { font-weight: 600; font-size: .92rem; color: var(--charcoal); }
.registry-card-store { font-size: .75rem; color: var(--charcoal-light); margin: 4px 0; }
.registry-card-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--rose-dark); }
.registry-card-actions { display: flex; gap: 8px; margin-top: 14px; }

/* ---- Seating ---- */
.seating-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.floor-plan {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); position: relative;
  min-height: 500px; overflow: hidden;
}
.floor-plan-canvas { width: 100%; height: 100%; position: relative; }
.table-circle {
  position: absolute; border-radius: 50%;
  background: var(--blush); border: 2px solid var(--blush-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: .72rem; font-weight: 600;
  color: var(--rose-dark); text-align: center;
}
.table-circle:hover, .table-circle.selected { border-color: var(--rose-dark); background: var(--blush-mid); }
.head-table {
  position: absolute; background: var(--gold-light); border: 2px solid var(--gold);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 600; color: var(--gold-dark);
}

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(51,48,46,.5);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: var(--gutter); opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform .25s;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.modal-header h3 { font-size: 1.6rem; }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--charcoal-light); padding: 4px; }

/* ---- Scroll animations ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 80px var(--gutter); }
  .feature-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { display: none; }
  .app-main { margin-left: 0; padding: 20px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .seating-layout { grid-template-columns: 1fr; }
}
