:root {
    --bg-1: #f6f2ea;
    --bg-2: #fdfaf6;
    --ink: #1f1d1a;
    --muted: #5b564d;
    --accent: #c7a7c0;
    --accent-strong: #a47ba1;
    --card: rgba(255, 255, 255, 0.86);
    --stroke: rgba(31, 29, 26, 0.08);
    --shadow: 0 18px 45px rgba(24, 20, 14, 0.12);
    --radius: 18px;
    --bg-image: url("/img/domaine-de-la-barbeirasse-9.jpg");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(1400px circle at 15% 10%, #ffffff 0%, var(--bg-2) 45%, var(--bg-1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 20px 64px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.9);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(246, 242, 234, 0.9) 60%, rgba(241, 235, 226, 0.98) 100%);
    z-index: -1;
}

body.rsvp-page {
    --bg-image: none;
    padding: 72px 24px 86px;
    background: radial-gradient(1200px circle at 20% 10%, #ffffff 0%, #fbf7f1 55%, #f4eee5 100%);
}

body.rsvp-page::before {
    opacity: 0;
}

body.rsvp-page::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(246, 242, 234, 0.95) 60%, rgba(241, 235, 226, 0.98) 100%);
}

body.witness-page {
    --bg-image: none;
    padding: 0;
    background: radial-gradient(1200px circle at 20% 10%, #ffffff 0%, #f7eef6 55%, #efe3ef 100%);
}

body.witness-page::before {
    opacity: 0;
}

body.witness-page::after {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.75) 0%, rgba(247, 239, 247, 0.6) 45%, rgba(235, 224, 236, 0.85) 100%);
}

body.hero-page {
    padding: 0;
    background: #fbf7f1;
}

body.hero-page::before {
    opacity: 0.85;
    filter: saturate(1.1) contrast(1.05) brightness(1.04);
}

body.hero-page::after {
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.6) 0%, rgba(255, 252, 247, 0.45) 45%, rgba(250, 244, 235, 0.7) 100%);
}

body.hero-page .eyebrow,
body.hero-page .hero-title,
body.hero-page .countdown-label {
    color: #2a251f;
}

body.hero-page .hero-subhead {
    color: rgba(54, 48, 40, 0.75);
}

body.hero-page .hero-helper {
    color: rgba(54, 48, 40, 0.7);
}

body.hero-page .button {
    border-color: rgba(164, 123, 161, 0.3);
}

body.hero-page .button.ghost {
    color: rgba(70, 60, 50, 0.8);
    border-color: rgba(164, 123, 161, 0.35);
}

body.hero-page .countdown-unit {
    border-color: rgba(164, 123, 161, 0.25);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 40px rgba(31, 29, 26, 0.12);
}

body.hero-page .countdown-number {
    color: #2a251f;
}

body.hero-page .countdown-label {
    color: rgba(70, 60, 50, 0.7);
}

body.hero-page .hero-actions .button {
    box-shadow: 0 14px 28px rgba(164, 123, 161, 0.22);
}

body.hero-page .hero-actions .button:hover {
    box-shadow: 0 18px 32px rgba(164, 123, 161, 0.28);
}

main.card {
    width: min(940px, 100%);
    padding: clamp(28px, 5vw, 48px);
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero {
    text-align: center;
}

.hero-title {
    font-size: clamp(34px, 5.4vw, 56px);
    letter-spacing: -0.01em;
}

.hero-subhead {
    margin: 0 auto 24px;
    max-width: 520px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.hero-greeting {
    margin: 0 auto 12px;
    max-width: 720px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(30px, 4.6vw, 46px);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted);
    margin: 0 0 14px;
}

h1 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(28px, 4.4vw, 40px);
    margin: 0 0 12px;
    letter-spacing: 0.01em;
}

.subhead {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.countdown-hero {
    margin: 32px 0 36px;
}

.countdown-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.countdown-unit {
    position: relative;
    padding: 26px 16px;
    border-radius: 24px;
    border: 1px solid rgba(31, 29, 26, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 240, 231, 0.85) 100%);
    text-align: center;
    box-shadow: 0 14px 30px rgba(31, 29, 26, 0.08);
    overflow: hidden;
}

.countdown-unit::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.countdown-number {
    position: relative;
    display: block;
    font-size: clamp(34px, 7vw, 70px);
    font-weight: 600;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    position: relative;
    display: block;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.hero-actions {
    justify-content: center;
}

.hero-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 90px 24px 110px;
}

.witness-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 64px 20px 72px;
}

.witness-card {
    width: min(560px, 100%);
    padding: clamp(32px, 6vw, 56px);
    border-radius: 28px;
    border: 1px solid rgba(31, 29, 26, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 26px 60px rgba(31, 29, 26, 0.1);
    text-align: center;
    backdrop-filter: blur(18px);
}

.witness-card.is-invalid {
    border-color: rgba(139, 31, 31, 0.25);
}

.witness-question {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(34px, 7.2vw, 50px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.witness-subhead {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.witness-note {
    margin-top: 22px;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.hero-card {
    width: min(980px, 100%);
    padding: clamp(32px, 6vw, 60px);
    border-radius: 28px;
    border: 1px solid rgba(31, 29, 26, 0.12);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 26px 60px rgba(31, 29, 26, 0.12);
    backdrop-filter: blur(18px);
    text-align: center;
}

.rsvp-card {
    width: min(860px, 100%);
    padding: clamp(32px, 5vw, 56px);
    border-radius: 26px;
    border: 1px solid rgba(31, 29, 26, 0.08);
    box-shadow: 0 26px 60px rgba(31, 29, 26, 0.08);
}

.admin-card {
    width: min(1680px, 98vw);
    padding: clamp(32px, 5vw, 56px);
}

.guest-row {
    grid-template-columns: minmax(280px, 1fr) auto;
}

.guest-row input[type="text"] {
    min-width: 260px;
}

.row-actions {
    flex-wrap: wrap;
}

.hero .eyebrow,
.hero-title,
.hero-subhead,
.countdown-unit,
.hero-actions {
    animation: fade-up 0.7s ease both;
}

.hero .eyebrow {
    animation-delay: 0.05s;
}

.hero-title {
    animation-delay: 0.12s;
}

.hero-subhead {
    animation-delay: 0.2s;
}

.countdown-unit:nth-child(1) { animation-delay: 0.3s; }
.countdown-unit:nth-child(2) { animation-delay: 0.38s; }
.countdown-unit:nth-child(3) { animation-delay: 0.46s; }
.countdown-unit:nth-child(4) { animation-delay: 0.54s; }

.hero-actions {
    animation-delay: 0.62s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero .eyebrow,
    .hero-title,
    .hero-subhead,
    .countdown-unit,
    .hero-actions {
        animation: none;
    }
}

.steps {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 24px;
}

.step {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(31, 29, 26, 0.08);
    background: rgba(255, 255, 255, 0.6);
}

.step.done {
    color: var(--accent-strong);
    border-color: rgba(164, 123, 161, 0.45);
    background: rgba(199, 167, 192, 0.12);
}

form {
    display: grid;
    gap: 12px;
}

label {
    font-size: 14px;
    color: var(--muted);
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(31, 29, 26, 0.16);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    border-color: rgba(199, 167, 192, 0.8);
    box-shadow: 0 0 0 4px rgba(199, 167, 192, 0.15);
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(199, 167, 192, 0.5);
    background: linear-gradient(135deg, #d9c3d6 0%, #a47ba1 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(164, 123, 161, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover,
.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(164, 123, 161, 0.28);
    filter: brightness(1.02);
}

button:disabled,
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button.ghost {
    background: transparent;
    color: var(--accent-strong);
    border-color: rgba(164, 123, 161, 0.4);
    box-shadow: none;
}

.button.confirm {
    background: rgba(20, 120, 70, 0.12);
    color: #0f5a35;
    border-color: rgba(20, 120, 70, 0.35);
    box-shadow: none;
}

.button.confirm:hover {
    background: rgba(20, 120, 70, 0.18);
}

.actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-footer {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button.subtle {
    padding: 8px 14px;
    font-size: 13px;
    letter-spacing: 0.01em;
    border-color: rgba(31, 29, 26, 0.18);
}

.error {
    color: #8b1f1f;
    font-size: 14px;
    margin-top: 8px;
}

h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.category-counts {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.panel-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(31, 29, 26, 0.08);
}

.stack {
    display: grid;
    gap: 12px;
}

.helper {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(31, 29, 26, 0.1);
    background: rgba(255, 255, 255, 0.65);
    margin: 12px 0 8px;
}

.tab {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.tab.active {
    background: rgba(199, 167, 192, 0.18);
    color: var(--accent-strong);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.filter-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 29, 26, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    color: var(--muted);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.filter-pill.active {
    border-color: rgba(199, 167, 192, 0.4);
    background: rgba(199, 167, 192, 0.18);
    color: var(--accent-strong);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(31, 29, 26, 0.16);
    background: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    cursor: pointer;
    color: var(--ink);
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(31, 29, 26, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 10;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    color: var(--ink);
}

.dropdown-item:hover {
    background: rgba(199, 167, 192, 0.12);
}

.dropdown-item.danger {
    color: #8b1f1f;
}

.dropdown-item:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 15, 16, 0.45);
    z-index: 50;
}

.modal.is-open {
    display: flex;
}

.modal-card {
    width: min(420px, 100%);
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 29, 26, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.modal-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

body.modal-open {
    overflow: hidden;
}

.search-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.link {
    font-size: 14px;
    color: var(--accent-strong);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(199, 167, 192, 0.18);
    color: var(--accent-strong);
}


.guest-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.search {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.result-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.result-form {
    margin: 0;
    display: block;
}

.result-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(31, 29, 26, 0.08);
    background: rgba(255, 255, 255, 0.72);
    font: inherit;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
    text-align: left;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.result-row:hover {
    border-color: rgba(199, 167, 192, 0.5);
    box-shadow: 0 10px 20px rgba(31, 29, 26, 0.08);
    transform: translateY(-1px);
    filter: none;
}

.result-row.is-selected {
    background: rgba(255, 255, 255, 0.5);
    color: var(--muted);
    cursor: default;
}

.result-row.is-selected:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(31, 29, 26, 0.08);
}

.result-row.is-confirmed {
    border-color: rgba(20, 120, 70, 0.45);
    background: rgba(20, 120, 70, 0.08);
    color: #0f5a35;
    cursor: default;
}

.result-row.is-confirmed:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(20, 120, 70, 0.45);
}

.result-name {
    font-size: 15px;
}

.result-pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(164, 123, 161, 0.35);
    color: var(--accent-strong);
    background: rgba(199, 167, 192, 0.12);
}

.result-row.is-selected .result-pill {
    border-color: rgba(31, 29, 26, 0.12);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.4);
}

.result-row.is-confirmed .result-pill {
    border-color: rgba(20, 120, 70, 0.45);
    color: #0f5a35;
    background: rgba(20, 120, 70, 0.12);
}

.add-all-form {
    margin-top: 12px;
    display: block;
}

.selected-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.selected-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(31, 29, 26, 0.06);
    background: rgba(255, 255, 255, 0.65);
}

.guest-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(31, 29, 26, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.guest-row.is-confirmed {
    border: 1px solid rgba(20, 120, 70, 0.6);
    background: rgba(20, 120, 70, 0.08);
    box-shadow: 0 0 0 1px rgba(20, 120, 70, 0.2);
}

.guest-row.is-confirmed input[type="text"] {
    color: #0f5a35;
    border-color: rgba(20, 120, 70, 0.25);
}

.guest-row.is-absent {
    border: 1px solid rgba(139, 31, 31, 0.6);
    background: rgba(139, 31, 31, 0.06);
    box-shadow: 0 0 0 1px rgba(139, 31, 31, 0.2);
}

.guest-row.is-absent input[type="text"] {
    color: #8b1f1f;
    border-color: rgba(139, 31, 31, 0.2);
}

.rsvp-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.rsvp-row {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(31, 29, 26, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.rsvp-row.confirmed {
    border-color: rgba(20, 120, 70, 0.45);
    background: rgba(20, 120, 70, 0.08);
}

.rsvp-row.cat1 {
    border-color: rgba(164, 123, 161, 0.55);
    background: rgba(164, 123, 161, 0.08);
}

.rsvp-row.cat2 {
    border-color: rgba(58, 112, 180, 0.55);
    background: rgba(58, 112, 180, 0.08);
}

.rsvp-email {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.rsvp-guests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rsvp-meta {
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: var(--muted);
}

.rsvp-meta code {
    font-size: 12px;
}

.uuid-link {
    color: var(--accent-strong);
    text-decoration: none;
    font-size: 12px;
}

.uuid-link:hover {
    text-decoration: underline;
}

.rsvp-category {
    display: grid;
    gap: 6px;
    margin-top: 2px;
}

.rsvp-category-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rsvp-category select {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(31, 29, 26, 0.16);
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    color: var(--ink);
}

.rsvp-chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(31, 29, 26, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
}

.rsvp-chip.is-empty {
    color: var(--muted);
    border-style: dashed;
}

.row-actions {
    display: flex;
    gap: 8px;
}

.button.danger {
    border-color: rgba(138, 31, 31, 0.3);
    color: #8b1f1f;
    background: transparent;
    box-shadow: none;
}

.notice {
    color: var(--accent-strong);
    font-size: 14px;
    margin-top: 8px;
}

.toast {
    position: fixed;
    right: 26px;
    bottom: 26px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 29, 26, 0.16);
    box-shadow: 0 12px 30px rgba(31, 29, 26, 0.16);
    color: var(--ink);
    font-size: 13px;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.empty {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

@media (max-width: 520px) {
    body {
        padding: 40px 16px 48px;
    }
    .eyebrow {
        letter-spacing: 0.18em;
    }
    .countdown-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .guest-row {
        grid-template-columns: 1fr;
    }
    .row-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .hero-shell {
        padding: 60px 18px 80px;
    }
    .hero-card {
        padding: 32px 22px;
    }
    body.rsvp-page {
        padding: 54px 18px 70px;
    }
    .rsvp-card {
        padding: 30px 22px;
    }
}
