*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #d8dee8;
}

:root {
	color-scheme: light;
	--ink: #15201c;
	--muted: #61706b;
	--paper: #f7f4ec;
	--paper-cool: #edf6f4;
	--panel: rgb(255 255 255 / 0.9);
	--panel-strong: #ffffff;
	--line: #d8dfda;
	--line-strong: #b9c5bf;
	--field: #fbfaf6;
	--brand: #14766a;
	--brand-dark: #0f3f38;
	--brand-soft: #e3f4ef;
	--accent: #ef6f4e;
	--accent-dark: #9d422b;
	--warm: #f3b33f;
	--trust: #305f8f;
	--danger: #b73543;
	--danger-soft: #fff0ee;
	--radius: 8px;
	--shadow: 0 28px 80px rgb(21 32 28 / 0.14), 0 2px 8px rgb(21 32 28 / 0.06);
	--shadow-soft: 0 14px 34px rgb(21 32 28 / 0.09);
	--shadow-brand: 0 16px 34px rgb(20 118 106 / 0.2);
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--paper);
}

body,
h1,
h2,
p {
	margin: 0;
}

body {
	min-height: 100vh;
	background:
		linear-gradient(132deg, rgb(243 179 63 / 0.18) 0 13rem, transparent 13rem 100%),
		linear-gradient(228deg, rgb(20 118 106 / 0.16) 0 16rem, transparent 16rem 100%),
		linear-gradient(180deg, #fffefa 0%, var(--paper) 47%, var(--paper-cool) 100%);
	color: var(--ink);
}

.app-body {
	color: #39443e;
	background: transparent;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(90deg, rgb(31 41 38 / 0.032) 1px, transparent 1px),
		linear-gradient(rgb(31 41 38 / 0.026) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.75), transparent 66%);
}

a {
	color: inherit;
	text-decoration: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
	background: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #0f766e;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px rgb(15 118 110 / 0.18);
}

img,
iframe {
	display: block;
	max-width: 100%;
}

textarea {
	resize: vertical;
}

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

th {
	color: #3e473f;
	font-weight: 700;
	text-align: left;
	background: #f2eee6;
}

td,
th {
	border-color: var(--line);
}

.rsvp-table-container {
	width: 100%;
	overflow-x: auto;
}

.rsvp-table {
	font-size: 0.875rem;
	table-layout: auto;
}

.rsvp-table th,
.rsvp-table__cell {
	padding: 0.55rem 0.65rem;
	vertical-align: top;
	border-bottom: 1px solid var(--line);
}

.rsvp-table th + th,
.rsvp-table__cell + .rsvp-table__cell {
	border-left: 1px solid var(--line);
}

.rsvp-table tbody tr:last-child .rsvp-table__cell {
	border-bottom: 0;
}

.rsvp-table__cell {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.container > div {
	width: 100%;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

footer {
	width: 100%;
}

.app-frame {
	min-height: 100vh;
	padding: clamp(1rem, 3vw, 1.75rem);
}

.app-header {
	width: min(100%, 56rem);
	margin: 0 auto clamp(0.75rem, 2vw, 1.25rem);
}

.app-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.45rem 0.65rem 0.45rem 0.5rem;
	background: rgb(255 255 255 / 0.88);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 8px 20px rgb(47 43 36 / 0.07);
}

.app-brand__mark {
	width: 2rem;
	height: 2rem;
}

.app-brand__name {
	color: var(--ink);
	font-weight: 800;
	letter-spacing: 0;
}

@media (min-width: 768px) {
	.app-brand {
		gap: 0.95rem;
		padding: 0.7rem 1rem 0.7rem 0.7rem;
	}

	.app-brand__mark {
		width: 3.45rem;
		height: 3.45rem;
	}

	.app-brand__name {
		font-size: 1.22rem;
	}
}

.app-container {
	width: min(100%, 56rem);
	margin-right: auto;
	margin-left: auto;
	padding: clamp(1rem, 3vw, 1.5rem);
}

.page-panel {
	position: relative;
	width: 100%;
	padding: clamp(1.4rem, 4vw, 2.35rem);
	overflow: hidden;
	background: var(--panel);
	border: 1px solid rgb(222 216 205 / 0.9);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.page-panel::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	content: "";
	background: linear-gradient(90deg, var(--brand), var(--accent), var(--warm));
}

.page-panel--narrow {
	max-width: 42rem;
	margin-right: auto;
	margin-left: auto;
}

.page-panel--center {
	text-align: center;
}

.event-shell {
	width: min(100%, 28rem);
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	background: var(--panel);
	border: 1px solid rgb(222 216 205 / 0.9);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.event-header {
	padding: clamp(1.8rem, 5vw, 3rem) clamp(1.3rem, 4vw, 2.2rem);
}

.event-title {
	color: var(--ink);
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	font-weight: 800;
	line-height: 1.08;
}

.event-header--center,
.event-shell--cancelled {
	text-align: center;
}

.event-form-area {
	padding: 1.1rem clamp(1.3rem, 4vw, 2.2rem);
	background: var(--panel);
	border-top: 1px solid var(--line);
}

.event-card {
	padding: 0.9rem;
	margin-bottom: 1rem;
	background: var(--panel);
	border: 1px solid rgb(222 216 205 / 0.9);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(14px);
}

.event-meta {
	margin-top: 0.25rem;
	color: var(--muted);
	font-size: 0.875rem;
	line-height: 1.35rem;
}

.event-meta--featured {
	margin-top: 0.5rem;
	color: var(--brand);
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.72rem;
}

.form-stack > :not([hidden]) ~ :not([hidden]) {
	margin-top: 0.65rem;
}

.field-control {
	width: 100%;
	padding: 0.72rem 0.85rem;
}

.form-separator,
.empty-state,
.link-divider {
	color: var(--muted);
	font-size: 0.875rem;
	line-height: 1.35rem;
}

.form-separator,
.empty-state {
	text-align: center;
}

.secondary-link {
	color: var(--muted);
	font-size: 0.875rem;
	line-height: 1.35rem;
}

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

.error-panel {
	color: var(--danger);
}

@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.inset-0 {
	inset: 0;
}

.top-2 {
	top: 0.5rem;
}

.right-2 {
	right: 0.5rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mt-1 {
	margin-top: 0.25rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mr-2 {
	margin-right: 0.5rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.flex {
	display: flex;
}

.inline-flex {
	display: inline-flex;
}

.hidden {
	display: none;
}

.w-full {
	width: 100%;
}

.w-5 {
	width: 1.25rem;
}

.h-5 {
	height: 1.25rem;
}

.w-11\/12 {
	width: 91.666667%;
}

.w-32 {
	width: 8rem;
}

.h-32 {
	height: 8rem;
}

.max-w-md {
	max-width: 28rem;
}

.max-w-lg {
	max-width: 32rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.cursor-pointer {
	cursor: pointer;
}

.items-center {
	align-items: center;
}

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

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
	margin-top: 0.85rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
	margin-left: 0.65rem;
}

.overflow-hidden {
	overflow: hidden;
}

.rounded,
.rounded-md,
.rounded-lg {
	border-radius: var(--radius);
}

.border {
	border-width: 1px;
}

.border-gray-500,
.border-gray-700 {
	border-color: var(--line);
}

.bg-black {
	background: transparent;
}

.bg-gray-600,
.bg-gray-700,
.bg-gray-800,
.bg-gray-900 {
	background: var(--panel);
	border: 1px solid rgb(222 216 205 / 0.9);
	backdrop-filter: blur(14px);
}

.bg-purple-500,
.bg-purple-600 {
	background-color: var(--brand);
}

.bg-green-500 {
	background-color: var(--accent);
}

.bg-blue-500 {
	background-color: var(--trust);
}

.bg-red-700 {
	background-color: var(--danger);
}

.bg-opacity-50 {
	background-color: rgb(37 37 37 / 0.5);
}

.p-2 {
	padding: 0.72rem 0.85rem;
}

.p-3 {
	padding: 0.9rem;
}

.p-4 {
	padding: clamp(1rem, 3vw, 1.5rem);
}

.p-6 {
	padding: clamp(1.4rem, 4vw, 2.35rem);
}

.px-2 {
	padding-left: 0.65rem;
	padding-right: 0.65rem;
}

.px-3 {
	padding-left: 0.9rem;
	padding-right: 0.9rem;
}

.px-4 {
	padding-left: 1.05rem;
	padding-right: 1.05rem;
}

.px-6 {
	padding-left: clamp(1.3rem, 4vw, 2.2rem);
	padding-right: clamp(1.3rem, 4vw, 2.2rem);
}

.py-1 {
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}

.py-2 {
	padding-top: 0.74rem;
	padding-bottom: 0.74rem;
}

.py-4 {
	padding-top: 1.1rem;
	padding-bottom: 1.1rem;
}

.py-8 {
	padding-top: clamp(1.8rem, 5vw, 3rem);
	padding-bottom: clamp(1.8rem, 5vw, 3rem);
}

.text-center {
	text-align: center;
}

.font-sans {
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.35rem;
}

.text-lg {
	font-size: 1.05rem;
	line-height: 1.7rem;
}

.text-xl {
	font-size: 1.16rem;
	line-height: 1.72rem;
}

.text-2xl {
	font-size: clamp(1.45rem, 3vw, 2rem);
	line-height: 1.2;
}

.text-3xl {
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	line-height: 1.08;
}

.font-medium {
	font-weight: 600;
}

.font-semibold {
	font-weight: 700;
}

.font-bold {
	font-weight: 800;
}

.text-white {
	color: var(--ink);
}

.text-gray-300 {
	color: #3f4a45;
}

.text-gray-500 {
	color: var(--muted);
}

.text-purple-400 {
	color: var(--brand);
}

.text-red-500 {
	color: var(--danger);
}

.shadow-md {
	box-shadow: var(--shadow-soft);
}

.shadow-lg {
	box-shadow: var(--shadow);
}

.transition-colors {
	transition-property: color, background-color, border-color, box-shadow, transform;
	transition-duration: 180ms;
	transition-timing-function: ease;
}

input,
select,
textarea {
	min-height: 2.9rem;
	width: 100%;
	background: var(--field) !important;
	border: 1px solid var(--line-strong) !important;
	border-radius: var(--radius) !important;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.85);
	color: var(--ink);
}

textarea[readonly],
input[readonly] {
	background: #f0ece4 !important;
	color: #4f5b54;
}

input::placeholder,
textarea::placeholder {
	color: #7b746b;
}

.field-label {
	display: block;
}

.copy-field {
	display: flex;
	width: 100%;
	align-items: stretch;
}

.copy-field input {
	min-width: 0;
	flex: 1;
	border-right: 0 !important;
	border-radius: var(--radius) 0 0 var(--radius) !important;
}

.copy-field-button {
	flex: 0 0 3.25rem;
	min-height: max(2.9rem, 44px);
	width: 3.25rem;
	padding: 0;
	background: var(--brand);
	border: 1px solid var(--brand);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: #fff;
	box-shadow: none;
}

.copy-icon {
	width: 1.2rem;
	height: 1.2rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.copy-icon-done,
.copy-field-button.is-copied .copy-icon-default {
	display: none;
}

.copy-field-button.is-copied .copy-icon-done {
	display: block;
}

.copy-field-button:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	transform: none;
	box-shadow: none;
}

.copy-field-button:focus-visible {
	position: relative;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	*,
	::before,
	::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.share-success {
	width: min(100%, 46rem);
	margin: 0 auto;
	padding: clamp(1rem, 3vw, 1.5rem);
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.share-hero {
	padding: clamp(1rem, 3vw, 1.5rem);
	text-align: center;
	background:
		linear-gradient(135deg, rgb(47 99 87 / 0.1), rgb(185 101 69 / 0.08)),
		#fffaf6;
	border: 1px solid rgb(47 99 87 / 0.14);
	border-radius: var(--radius);
}

.share-status {
	display: grid;
	width: 3rem;
	height: 3rem;
	margin: 0 auto 0.85rem;
	place-items: center;
	color: #fff;
	background: var(--brand);
	border-radius: 999px;
	box-shadow: var(--shadow-brand);
}

.share-status svg {
	width: 1.6rem;
	height: 1.6rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.share-kicker {
	color: var(--brand-dark);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.share-hero h1 {
	margin-top: 0.35rem;
	color: var(--ink);
	font-size: clamp(1.75rem, 5vw, 2.45rem);
	font-weight: 800;
	line-height: 1.08;
}

.share-meta {
	margin-top: 0.55rem;
	color: #46524d;
	font-weight: 700;
}

.share-lede {
	max-width: 32rem;
	margin: 0.75rem auto 0;
	color: var(--muted);
	line-height: 1.6;
}

.share-primary,
.share-admin {
	margin-top: 1rem;
	padding: clamp(1rem, 3vw, 1.25rem);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.share-primary {
	background: var(--brand-soft);
	border-color: rgb(47 99 87 / 0.18);
}

.share-admin {
	background: #fbfaf7;
}

.share-section-heading {
	margin-bottom: 0.85rem;
}

.share-section-heading h2 {
	color: var(--ink);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
}

.share-section-heading p {
	margin-top: 0.25rem;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.share-warning {
	padding: 0.7rem 0.8rem;
	background: #fff8e2;
	border: 1px solid rgb(208 161 75 / 0.34);
	border-radius: var(--radius);
	color: #72521a !important;
	font-weight: 700;
}

.share-primary .copy-field {
	box-shadow: 0 12px 26px rgb(47 43 36 / 0.1);
}

.share-primary .copy-field input {
	background: #fff !important;
	color: var(--ink);
	font-weight: 700;
}

.share-admin .copy-field input {
	font-size: 0.9rem;
}

.share-invite-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
	margin-top: -0.25rem;
}

.share-button {
	display: inline-flex;
	width: 100%;
	min-height: max(2.9rem, 44px);
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.share-button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-brand);
}

.share-button--primary {
	grid-column: 1 / -1;
	color: #fff;
	background: linear-gradient(135deg, var(--brand-dark), var(--brand));
	box-shadow: var(--shadow-brand);
}

.share-button--whatsapp {
	color: #fff;
	background: #2f7569;
}

.share-button--mail {
	color: #fff;
	background: var(--trust);
}

.share-button--native {
	color: var(--brand-dark);
	background: #fff;
	border-color: var(--line-strong);
	box-shadow: none;
}

.share-footer {
	margin-top: 1rem;
	text-align: center;
}

@media (min-width: 640px) {
	.share-invite-actions {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}

	.share-button--primary {
		grid-column: auto;
	}
}

button,
a.bg-purple-600,
a.bg-purple-500,
a.bg-green-500,
a.bg-blue-500,
a.bg-red-700,
a.bg-gray-700,
.inline-flex,
.block.bg-purple-600,
.block.border {
	min-height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--radius);
	font-weight: 700;
	box-shadow: var(--shadow-brand);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.block.bg-purple-600,
.w-full.bg-purple-600 {
	display: flex;
	width: 100%;
	color: #fff;
}

button.bg-purple-600,
button.bg-purple-500,
a.bg-purple-600,
a.bg-purple-500,
a.bg-green-500,
a.bg-blue-500,
button.bg-red-700,
a.bg-red-700 {
	color: #fff;
}

.block.border,
a.bg-gray-700 {
	background: var(--panel-strong);
	border: 1px solid var(--line-strong);
	color: #283431;
	box-shadow: none;
}

button:hover,
a.bg-purple-600:hover,
a.bg-purple-500:hover,
a.bg-green-500:hover,
a.bg-blue-500:hover,
a.bg-red-700:hover,
a.bg-gray-700:hover,
.block.bg-purple-600:hover,
.block.border:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-brand);
}

.primary-button,
.danger-button {
	display: flex;
	width: 100%;
	min-height: max(2.75rem, 44px);
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 0.85rem;
	border-radius: var(--radius);
	color: #fff;
	font-weight: 700;
	box-shadow: var(--shadow-brand);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.primary-button {
	background: var(--brand);
	border: 1px solid var(--brand);
}

.primary-button:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-brand);
}

.danger-button {
	background: var(--danger);
	border: 1px solid var(--danger);
}

.danger-button:hover {
	background: #b62531;
	border-color: #b62531;
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgb(186 47 63 / 0.2);
}

.hover\:bg-gray-700:hover,
.hover\:bg-purple-600:hover,
.hover\:bg-purple-700:hover {
	background-color: var(--brand-dark);
	color: #fff;
}

.hover\:bg-green-600:hover {
	background-color: var(--accent-dark);
}

.hover\:bg-blue-600:hover {
	background-color: #284f69;
}

.hover\:bg-red-800:hover {
	background-color: #b62531;
	color: #fff;
}

.status-message {
	margin-top: 0.65rem;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
}

.is-busy {
	cursor: progress;
}

button.busy-button,
button.busy-button:hover,
input.busy-button,
input.busy-button:hover {
	cursor: wait;
	opacity: 0.72;
	transform: none;
	box-shadow: 0 8px 18px rgb(47 43 36 / 0.1);
}

.hover\:border-gray-600:hover {
	border-color: var(--brand);
}

.hover\:text-white:hover {
	color: #fff;
}

.hover\:underline:hover {
	text-decoration-line: underline;
}

.action-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	gap: 0.85rem;
	text-align: left;
}

.action-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
	gap: 0.7rem;
}

.action-card {
	position: relative;
	display: flex;
	min-height: 6.25rem;
	gap: 0.85rem;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 1rem;
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 2px rgb(43 34 22 / 0.04);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.action-card:hover {
	transform: translateY(-1px);
	border-color: var(--brand);
	box-shadow: 0 16px 32px rgb(47 43 36 / 0.1);
}

.action-card--primary {
	color: #fff;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.13), transparent 38%),
		linear-gradient(135deg, var(--brand), var(--brand-dark));
	border-color: var(--brand);
	box-shadow: 0 18px 42px rgb(47 99 87 / 0.18);
}

.action-card--primary .action-card__description,
.action-card--primary .action-card__icon {
	color: rgb(255 255 255 / 0.82);
}

.action-card--danger {
	background: linear-gradient(180deg, #fff7f6, var(--danger-soft));
	border-color: rgb(183 53 67 / 0.22);
	box-shadow: none;
}

.action-card--danger .action-card__title,
.action-card--danger .action-card__icon {
	color: var(--danger);
}

.action-card__icon {
	flex: 0 0 auto;
	display: grid;
	width: 2.15rem;
	height: 2.15rem;
	place-items: center;
	color: var(--brand);
	background: var(--brand-soft);
	border-radius: var(--radius);
}

.action-card__icon svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.action-card__body {
	display: block;
	min-width: 0;
}

.action-card__title {
	display: block;
	font-weight: 800;
	color: inherit;
}

.action-card__description {
	display: block;
	margin-top: 0.35rem;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.35;
}

.home-shell {
	width: min(100%, 62rem);
	margin: 0 auto;
	padding: clamp(0.4rem, 2vw, 1rem) 0 clamp(1.5rem, 4vw, 2.25rem);
}

.home-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1rem, 3vw, 2rem);
	align-items: stretch;
	min-height: min(29rem, calc(100vh - 9rem));
	padding: clamp(1.05rem, 3vw, 2rem);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgb(15 63 56 / 0.95), rgb(20 118 106 / 0.88) 48%, rgb(239 111 78 / 0.88)),
		var(--brand-dark);
	border: 1px solid rgb(15 63 56 / 0.18);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background:
		linear-gradient(90deg, rgb(255 255 255 / 0.09) 1px, transparent 1px),
		linear-gradient(rgb(255 255 255 / 0.07) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(135deg, rgb(0 0 0 / 0.72), transparent 78%);
}

.home-hero__copy,
.home-hero > .action-card {
	position: relative;
	z-index: 1;
}

.home-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 48rem;
	color: #fff;
}

.home-kicker {
	width: fit-content;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.55rem;
	color: #103d37;
	background: rgb(255 255 255 / 0.84);
	border: 1px solid rgb(255 255 255 / 0.5);
	border-radius: var(--radius);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.home-title {
	font-size: clamp(2.3rem, 5.8vw, 4.75rem);
	font-weight: 800;
	line-height: 0.95;
	color: #fff;
	text-wrap: balance;
}

.home-lede {
	max-width: 37rem;
	margin-top: clamp(0.7rem, 1.5vw, 1rem);
	color: rgb(255 255 255 / 0.86);
	font-size: clamp(1.05rem, 2vw, 1.24rem);
	line-height: 1.52;
}

.home-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.85rem;
	color: #103d37;
	font-size: 0.84rem;
	font-weight: 600;
}

.home-trust span {
	display: inline-flex;
	min-height: 2rem;
	align-items: center;
	padding: 0.35rem 0.6rem;
	background: rgb(255 255 255 / 0.82);
	border: 1px solid rgb(255 255 255 / 0.42);
	border-radius: var(--radius);
}

.home-hero > .action-card {
	grid-column: 1 / 2;
	width: 100%;
	min-height: 6.25rem;
	margin-top: auto;
	align-items: center;
	padding: clamp(0.9rem, 2vw, 1.1rem);
	border-color: rgb(255 255 255 / 0.32);
	box-shadow: 0 22px 48px rgb(15 63 56 / 0.25);
}

.home-hero > .action-card .action-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	color: #fff;
	background: rgb(255 255 255 / 0.16);
}

.home-hero > .action-card .action-card__title {
	font-size: clamp(1.35rem, 4vw, 1.75rem);
	line-height: 1.1;
}

.home-hero > .action-card .action-card__description {
	max-width: 35rem;
	font-size: 0.98rem;
	line-height: 1.45;
}

.home-section,
.home-about {
	margin-top: 1rem;
	padding: clamp(1.05rem, 3vw, 1.5rem);
	background: rgb(255 255 255 / 0.9);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgb(21 32 28 / 0.06);
}

.home-section--secondary {
	margin-top: clamp(1rem, 3vw, 1.5rem);
}

.home-section__header {
	display: flex;
	gap: 0.75rem 1rem;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.home-section h2,
.home-about h2 {
	color: var(--ink);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 800;
	line-height: 1.25;
}

.home-section p,
.home-about p {
	margin-top: 0.3rem;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.home-action-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.home-action-grid .action-card {
	min-height: 7.35rem;
	padding: 1rem;
	background:
		linear-gradient(180deg, rgb(255 255 255 / 0.96), rgb(248 251 249 / 0.96));
}

.home-action-grid .action-card__title {
	font-size: 1.02rem;
	line-height: 1.22;
}

.home-action-grid .action-card__description {
	max-width: 24rem;
	font-size: 0.9rem;
	line-height: 1.42;
}

@media (min-width: 768px) {
	.home-lede {
		font-size: 1.15rem;
	}
}

.tool-panel {
	padding: 1rem;
	text-align: left;
	background: rgb(255 255 255 / 0.62);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.tool-panel__title {
	margin-bottom: 0.75rem;
	color: #46514c;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tool-section {
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.tool-section + .tool-section {
	margin-top: 0.7rem;
}

.tool-section summary {
	min-height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 0.9rem;
	cursor: pointer;
	font-weight: 800;
}

.tool-section summary::after {
	content: "+";
	color: var(--muted);
	font-size: 1.2rem;
	line-height: 1;
}

.tool-section[open] summary::after {
	content: "-";
}

.tool-section form {
	padding: 0 0.9rem 0.9rem;
}

.form-card {
	display: grid;
	gap: 1rem;
}

.form-section {
	display: grid;
	gap: 0.85rem;
}

.form-section + .form-section {
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.form-section__title {
	margin: 0;
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0;
}

.form-group {
	display: grid;
	gap: 0.35rem;
}

.form-label {
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 700;
}

.form-help {
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.form-help--trust {
	padding: 0.7rem 0.8rem;
	color: var(--brand-dark);
	background: var(--brand-soft);
	border: 1px solid rgb(47 99 87 / 0.16);
	border-radius: var(--radius);
}

.form-actions {
	margin-top: 0.15rem;
}

.tool-section--danger {
	border-color: rgb(216 59 70 / 0.28);
}

.tool-section--danger summary {
	color: var(--danger);
}

.container > .bg-gray-900,
.max-w-md.bg-gray-800 {
	position: relative;
	overflow: hidden;
}

.container > .bg-gray-900::before,
.max-w-md.bg-gray-800::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	content: "";
	background: linear-gradient(90deg, var(--brand), var(--trust), var(--accent), var(--warm));
}

.container > .bg-gray-900.text-center {
	max-width: 42rem;
	margin-right: auto;
	margin-left: auto;
}

.container > .bg-gray-900.text-center img.h-32 {
	padding: 0.65rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

iframe {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.has-open-dialog {
	overflow: hidden;
}

.app-dialog {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.app-dialog[hidden] {
	display: none;
}

.app-dialog__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(31 41 38 / 0.44);
	backdrop-filter: blur(8px);
}

.app-dialog__panel {
	position: relative;
	width: min(100%, 24rem);
	padding: 1.45rem;
	text-align: center;
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.app-dialog__icon {
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.85rem;
	place-items: center;
	color: #fff;
	background: var(--accent);
	border-radius: 999px;
	box-shadow: 0 12px 24px rgb(185 101 69 / 0.18);
}

.app-dialog[data-variant="error"] .app-dialog__icon {
	background: var(--danger);
	box-shadow: 0 12px 24px rgb(216 59 70 / 0.2);
}

.app-dialog__icon svg {
	width: 1.45rem;
	height: 1.45rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.app-dialog__icon-error,
.app-dialog[data-variant="error"] .app-dialog__icon-check {
	display: none;
}

.app-dialog[data-variant="error"] .app-dialog__icon-error {
	display: block;
}

.app-dialog__title {
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--ink);
}

.app-dialog__message {
	margin-top: 0.55rem;
	color: var(--muted);
	overflow-wrap: anywhere;
}

.app-dialog__input {
	width: 100%;
	margin-top: 1rem;
	padding: 0.72rem 0.85rem;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: center;
	font: inherit;
	font-size: 1.2rem;
}

.app-dialog__button {
	width: 100%;
	margin-top: 1.15rem;
	padding: 0.72rem 0.85rem;
	color: #fff;
	background: var(--brand);
	border: 1px solid var(--brand);
	border-radius: var(--radius);
	box-shadow: var(--shadow-brand);
}

.app-dialog__button:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
}

@media (max-width: 560px) {
	.container {
		justify-content: flex-start;
	}

	.rsvp-table-container {
		overflow-x: visible;
	}

	.rsvp-table {
		display: block;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.rsvp-table thead {
		display: none;
	}

	.rsvp-table tbody {
		display: grid;
		gap: 0.65rem;
	}

	.rsvp-table tr {
		display: block;
		overflow: hidden;
		background: var(--panel-strong);
		border: 1px solid var(--line);
		border-radius: var(--radius);
	}

	.rsvp-table__cell {
		display: grid;
		grid-template-columns: minmax(6.5rem, 38%) minmax(0, 1fr);
		gap: 0.75rem;
		align-items: start;
		padding: 0.65rem 0.75rem;
		border-left: 0;
		border-bottom: 1px solid var(--line);
	}

	.rsvp-table__cell + .rsvp-table__cell {
		border-left: 0;
	}

	.rsvp-table__cell:last-child {
		border-bottom: 0;
	}

	.rsvp-table__cell::before {
		color: var(--muted);
		font-weight: 800;
		content: attr(data-label);
	}

	.app-frame {
		padding: 0.75rem;
	}

	.app-header {
		margin-bottom: 0.5rem;
	}

	.home-shell {
		padding-top: 0.25rem;
		padding-bottom: 1rem;
	}

	.home-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.home-section__header {
		display: block;
	}

	.home-action-grid {
		grid-template-columns: 1fr;
	}

	.home-hero > .action-card {
		max-width: none;
	}

	.home-hero > .action-card .action-card__title {
		font-size: 1.25rem;
	}

	.flex {
		flex-wrap: wrap;
	}

	.space-x-2 > :not([hidden]) ~ :not([hidden]) {
		margin-left: 0;
	}

	.space-x-2 > :not([hidden]) {
		margin-right: 0.5rem;
		margin-bottom: 0.5rem;
	}
}
