:root {
  --vellum: #fbf6ea;
  --paper: #fffdf7;
  --powder: #d9e3df;
  --powder-deep: #7f938f;
  --blue: #9cb0c5;
  --blush: #ead2d4;
  --lavender: #b8a2c4;
  --plum: #442f43;
  --ink: #2f2530;
  --muted: #706473;
  --sage: #7f936f;
  --gold: #b58b46;
  --gold-soft: #dfc899;
  --line: #decaa6;
  --shadow: 0 28px 80px rgba(57, 43, 52, .16);
  --tight-shadow: 0 18px 46px rgba(57, 43, 52, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(68, 47, 67, .76) rgba(251, 246, 234, .88);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(rgba(251, 246, 234, .92), rgba(251, 246, 234, .92)),
    repeating-linear-gradient(180deg, rgba(181, 139, 70, .14) 0 1px, transparent 1px 16px);
  border-left: 1px solid rgba(222, 202, 166, .5);
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(251, 246, 234, .92);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(181, 139, 70, .58), rgba(68, 47, 67, .82) 32%, rgba(68, 47, 67, .82) 68%, rgba(181, 139, 70, .58));
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, .36);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(181, 139, 70, .72), rgba(68, 47, 67, .94) 32%, rgba(68, 47, 67, .94) 68%, rgba(181, 139, 70, .72));
}

h1, h2, h3, p, li, a, label, legend, strong, span {
  overflow-wrap: break-word;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Lora, Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(234, 210, 212, .72), transparent 22rem),
    radial-gradient(circle at 88% 5%, rgba(223, 200, 153, .2), transparent 30rem),
    radial-gradient(circle at 78% 88%, rgba(127, 147, 111, .18), transparent 25rem),
    linear-gradient(135deg, #fbf6ea 0%, #f5efe3 48%, #f2eee4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  z-index: -1;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='88' viewBox='0 0 80 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 21.91V26h-2c-9.94 0-18 8.06-18 18 0 9.943 8.058 18 18 18h2v4.09c8.012.722 14.785 5.738 18 12.73 3.212-6.99 9.983-12.008 18-12.73V62h2c9.94 0 18-8.06 18-18 0-9.943-8.058-18-18-18h-2v-4.09c-8.012-.722-14.785-5.738-18-12.73-3.212 6.99-9.983 12.008-18 12.73zM54 58v4.696c-5.574 1.316-10.455 4.428-14 8.69-3.545-4.262-8.426-7.374-14-8.69V58h-5.993C12.27 58 6 51.734 6 44c0-7.732 6.275-14 14.007-14H26v-4.696c5.574-1.316 10.455-4.428 14-8.69 3.545 4.262 8.426 7.374 14 8.69V30h5.993C67.73 30 74 36.266 74 44c0 7.732-6.275 14-14.007 14H54zM42 88c0-9.94 8.06-18 18-18h2v-4.09c8.016-.722 14.787-5.738 18-12.73v7.434c-3.545 4.262-8.426 7.374-14 8.69V74h-5.993C52.275 74 46 80.268 46 88h-4zm-4 0c0-9.943-8.058-18-18-18h-2v-4.09c-8.012-.722-14.785-5.738-18-12.73v7.434c3.545 4.262 8.426 7.374 14 8.69V74h5.993C27.73 74 34 80.266 34 88h4zm4-88c0 9.943 8.058 18 18 18h2v4.09c8.012.722 14.785 5.738 18 12.73v-7.434c-3.545-4.262-8.426-7.374-14-8.69V14h-5.993C52.27 14 46 7.734 46 0h-4zM0 34.82c3.213-6.992 9.984-12.008 18-12.73V18h2c9.94 0 18-8.06 18-18h-4c0 7.732-6.275 14-14.007 14H14v4.696c-5.574 1.316-10.455 4.428-14 8.69v7.433z' fill='%239C92AC' fill-opacity='0.22' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 124px 136px;
}

.site-header,
main {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 3;
  padding: 22px 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  padding: 12px 18px;
  border: 1px solid rgba(222, 202, 166, .58);
  border-radius: 999px;
  background: rgba(255, 253, 247, .5);
  backdrop-filter: blur(10px);
}

nav a {
  position: relative;
  color: var(--plum);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  padding: 14px 0 72px;
}

.hero-section {
  position: relative;
  min-height: min(780px, calc(100vh - 90px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .78fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  padding-bottom: 54px;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: clamp(20px, 3vw, 36px) clamp(56px, 7vw, 88px) clamp(20px, 3vw, 36px) clamp(28px, 4vw, 52px);
  text-align: center;
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  width: min(760px, 96vw);
  max-width: none;
  left: 47%;
  top: 52%;
  transform: translate(-50%, -48%);
  opacity: .118;
  filter: sepia(.06) contrast(.92);
  pointer-events: none;
  user-select: none;
}

.script-note {
  margin: 0 0 10px;
  font: 400 clamp(2rem, 4vw, 3.1rem) "Great Vibes", cursive;
  color: var(--sage);
}

h1, h2, h3 {
  margin: 0;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(4.35rem, 9.8vw, 7.7rem);
  line-height: .88;
  text-shadow: 0 1px 0 rgba(255, 253, 247, .6);
}

h1 span {
  display: inline-block;
  white-space: nowrap;
}

.form-section h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

h2 {
  max-width: 850px;
  font-size: clamp(2.55rem, 5.6vw, 4.3rem);
  line-height: .98;
}

h3 {
  font-size: 1.78rem;
  line-height: 1.02;
}

p { line-height: 1.78; }

.lede {
  max-width: 560px;
  margin: 22px auto 18px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.33rem);
}

.flourish {
  width: min(280px, 72vw);
  height: 24px;
  margin: 18px auto 0;
  position: relative;
}

.flourish::before,
.flourish::after {
  content: "";
  position: absolute;
  top: 11px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.flourish::before {
  left: 0;
  width: 44%;
}

.flourish::after {
  right: 0;
  width: 44%;
}

.flourish {
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 50%, transparent 0 5px, rgba(181, 139, 70, .8) 6px 7px, transparent 8px),
    radial-gradient(circle at 56% 50%, transparent 0 5px, rgba(181, 139, 70, .8) 6px 7px, transparent 8px);
}

.flourish.small {
  width: 180px;
  margin: 14px 0 22px;
}

.hero-mini {
  max-width: 640px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.hero-mini span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(181, 139, 70, .4);
  border-radius: 999px;
  background: rgba(255, 253, 247, .54);
  color: var(--plum);
  font-size: .86rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.hero-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(68, 47, 67, .18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum), #5c415e);
  color: #fff;
  text-decoration: none;
  font: 700 .96rem Lora, Georgia, serif;
  white-space: nowrap;
  padding: 13px 25px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(68, 47, 67, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #5c415e, #725275);
  transform: translateY(-1px);
  box-shadow: 0 17px 32px rgba(68, 47, 67, .24);
}

.button.ghost {
  background: rgba(255, 253, 247, .7);
  color: var(--plum);
  border-color: rgba(68, 47, 67, .26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .48);
}

.button.submit {
  justify-self: start;
  margin-top: 2px;
}

.invite-card,
.keepsake,
.form-section,
.details-grid article,
.map-section {
  background:
    linear-gradient(rgba(255, 253, 247, .91), rgba(255, 253, 247, .91)),
    repeating-linear-gradient(135deg, rgba(181, 139, 70, .08) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(222, 202, 166, .96);
  box-shadow: var(--tight-shadow);
}

.invite-card {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.invite-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(181, 139, 70, .58);
  pointer-events: none;
}

.invite-card::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(127, 147, 111, .24);
  pointer-events: none;
}

.portrait-medallion {
  position: relative;
  z-index: 2;
  width: min(245px, 70%);
  aspect-ratio: 1;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 139, 70, .58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 253, 247, .9), rgba(251, 246, 234, .56) 66%, rgba(223, 200, 153, .16));
  overflow: hidden;
  box-shadow: inset 0 0 0 12px rgba(255, 253, 247, .5), 0 18px 42px rgba(68, 47, 67, .1);
}

.portrait-medallion::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(181, 139, 70, .28);
  border-radius: 50%;
  pointer-events: none;
}

.portrait-medallion img {
  width: 104%;
  height: 104%;
  object-fit: contain;
  transform: translateY(-5px);
  opacity: 1;
  filter: none;
}

.detail-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.detail-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  color: var(--plum);
  margin-bottom: 7px;
}

.detail-list span {
  color: var(--muted);
  line-height: 1.55;
}

.invite-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.invite-actions .button {
  min-height: 44px;
  padding: 11px 20px;
}

.details-band,
.split-section,
.map-section,
.form-section {
  margin-top: clamp(48px, 8vw, 92px);
}

.section-heading {
  margin-bottom: 30px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.details-grid article {
  position: relative;
  min-width: 0;
  min-height: 244px;
  border-radius: 4px;
  padding: 30px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.details-grid article::after,
.keepsake::after,
.map-section::after,
.form-section::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(156, 176, 197, .22);
  pointer-events: none;
}

.details-grid article::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  top: -18px;
  right: -18px;
  background: rgba(181, 139, 70, .035);
  border-radius: 50%;
  transform: scale(1);
  transition: transform .3s ease;
}

.details-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 139, 70, .8);
}

.details-grid article:hover::before {
  transform: scale(16);
}

.details-grid article > * {
  position: relative;
  z-index: 1;
}

.details-grid p,
.split-section p,
.map-section p,
.form-intro p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  color: var(--gold);
  border: 1px solid rgba(181, 139, 70, .42);
  border-radius: 50%;
  font: 700 1rem "Cormorant Garamond", Georgia, serif;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.keepsake {
  position: relative;
  min-width: 0;
  border-radius: 4px;
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
}

.recipe-card-art {
  position: absolute;
  z-index: 0;
  width: min(330px, 78%);
  max-width: none;
  right: -58px;
  top: -68px;
  transform: rotate(-4deg);
  opacity: .045;
  filter: sepia(.08) contrast(.9);
  pointer-events: none;
  user-select: none;
}

.keepsake > :not(.recipe-card-art) {
  position: relative;
  z-index: 1;
}

.pretty-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.9;
}

.pretty-list li::marker { color: var(--sage); }

.map-section {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: clamp(26px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.map-card-art {
  position: absolute;
  z-index: 0;
  width: min(360px, 38%);
  max-width: none;
  right: clamp(14px, 4vw, 54px);
  top: -92px;
  transform: rotate(-8deg);
  opacity: .04;
  filter: sepia(.08) contrast(.88);
  pointer-events: none;
  user-select: none;
}

.map-section > :not(.map-card-art) {
  position: relative;
  z-index: 1;
}

.form-section {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: clamp(26px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.form-intro {
  max-width: 360px;
  padding-top: 4px;
}

.form-intro .flourish {
  margin-bottom: 26px;
}

#rsvpForm {
  display: grid;
  gap: 16px;
}

.form-section > *,
.split-section > *,
.section-heading > *,
.details-grid > * {
  min-width: 0;
}

.muted { color: var(--muted); }

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
legend {
  color: var(--plum);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(222, 202, 166, .95);
  border-radius: 3px;
  background:
    linear-gradient(rgba(255, 253, 247, .9), rgba(255, 253, 247, .9)),
    repeating-linear-gradient(135deg, rgba(181, 139, 70, .05) 0 1px, transparent 1px 12px);
  font: 500 1rem Lora, Georgia, serif;
  padding: 13px 14px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  background: #fffefb;
  box-shadow: inset 0 -2px 0 rgba(181, 139, 70, .34), 0 0 0 3px rgba(156, 176, 197, .2);
  outline: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(156, 176, 197, .38);
  outline-offset: 3px;
}

fieldset {
  border: 0;
  padding: 0;
}

fieldset.field {
  gap: 10px;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.radio-row label,
.checkbox {
  position: relative;
  border: 1px solid rgba(222, 202, 166, .95);
  border-radius: 4px;
  background: rgba(255, 253, 247, .62);
  font-weight: 700;
  cursor: pointer;
}

.radio-row label {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 14px;
}

.radio-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-mark {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(156, 176, 197, .35);
  box-shadow: inset 0 0 0 1px rgba(68, 47, 67, .16);
}

.radio-row input:checked + .radio-mark {
  background: radial-gradient(circle, var(--plum) 0 42%, transparent 45%), var(--gold-soft);
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(181, 139, 70, .12);
}

.radio-row label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(255, 248, 229, .82);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0;
  padding: 14px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.check svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  transition: stroke-dashoffset .24s ease;
}

.checkbox input:checked + .check polyline {
  stroke-dashoffset: 0;
}

.checkbox input:checked + .check svg {
  stroke: var(--plum);
}

.status,
.edit-note {
  font-weight: 700;
}

.status.ok { color: #406f49; }
.status.err { color: #9b3d3d; }

.edit-note {
  margin-bottom: 0;
  color: var(--muted);
  word-break: break-word;
}

.edit-note a { color: var(--plum); }

.admin-page main {
  padding-top: 22px;
}

.admin-header {
  justify-content: space-between;
}

.admin-main {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.admin-login {
  grid-template-columns: minmax(260px, .7fr) minmax(300px, .82fr);
  align-items: center;
}

.admin-auth-card {
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(222, 202, 166, .86);
  border-radius: 4px;
  background:
    linear-gradient(rgba(255, 253, 247, .78), rgba(255, 253, 247, .78)),
    repeating-linear-gradient(135deg, rgba(181, 139, 70, .06) 0 1px, transparent 1px 13px);
}

.admin-auth-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(127, 147, 111, .2);
  pointer-events: none;
}

.admin-auth-card > * {
  position: relative;
  z-index: 1;
}

.field-hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.admin-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(rgba(255, 253, 247, .91), rgba(255, 253, 247, .91)),
    repeating-linear-gradient(135deg, rgba(181, 139, 70, .06) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(222, 202, 166, .96);
  box-shadow: var(--tight-shadow);
}

.admin-dashboard::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(127, 147, 111, .22);
  pointer-events: none;
}

.admin-dashboard > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-dashboard-head .script-note {
  margin-bottom: 4px;
}

.admin-dashboard-head h2 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.admin-dashboard-body {
  display: grid;
  gap: 18px;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 253, 247, .86);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(222, 202, 166, .78);
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(222, 202, 166, .58);
  text-align: left;
  font-size: .88rem;
  vertical-align: top;
}

.admin-table th {
  color: var(--plum);
  background: rgba(251, 246, 234, .9);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-table tbody tr:hover {
  background: rgba(255, 248, 229, .48);
}

.admin-table small {
  color: var(--muted);
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(181, 139, 70, .38);
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 253, 247, .72);
  font-weight: 700;
  text-transform: capitalize;
}

.status-yes {
  border-color: rgba(127, 147, 111, .42);
  background: rgba(127, 147, 111, .12);
}

.status-maybe {
  background: rgba(223, 200, 153, .18);
}

.status-no {
  border-color: rgba(155, 61, 61, .28);
  background: rgba(155, 61, 61, .08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 12px;
}

.stat {
  display: grid;
  gap: 6px;
  background: rgba(251, 248, 241, .88);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px;
}

.stat strong {
  display: block;
  color: var(--plum);
  font: 700 2rem "Cormorant Garamond", Georgia, serif;
  line-height: .9;
  order: -1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
}

.table-wrap {
  overflow: auto;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(222, 202, 166, .32);
}

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

@media (max-width: 840px) {
  .hero-section,
  .section-heading,
  .details-grid,
  .split-section,
  .form-section,
  .admin-login {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: clamp(38px, 8vw, 58px);
    gap: 30px;
  }

  .hero-watermark {
    width: min(620px, 112vw);
    left: 50%;
    top: 53%;
    transform: translate(-50%, -48%);
  }

  .details-grid article { min-height: auto; }

  .admin-dashboard-head {
    align-items: start;
    flex-direction: column;
  }

  .admin-dashboard-head .button {
    width: auto;
  }
}

@media (min-width: 841px) and (max-width: 1100px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
    gap: clamp(24px, 4vw, 46px);
    padding-top: 24px;
  }

  .hero-watermark {
    width: min(700px, 74vw);
    top: 54%;
  }

  h1 {
    font-size: clamp(4.2rem, 8vw, 6.4rem);
  }

  .lede {
    max-width: 460px;
  }
}

@media (max-width: 620px) {
  main,
  .site-header {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    display: block;
    padding-top: 22px;
    padding-bottom: 10px;
  }

  nav {
    margin-top: 14px;
    justify-content: flex-start;
    gap: 15px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.8vw, 3.12rem);
    line-height: .93;
  }

  h1 span { display: block; }

  h2 {
    font-size: clamp(2.05rem, 9.3vw, 2.62rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .split-section h2,
  .map-section h2 {
    max-width: 100%;
  }

  .section-heading h2 {
    max-width: 11ch;
  }

  .split-section h2 {
    max-width: 12ch;
  }

  .split-section p,
  .details-grid p,
  .form-intro p {
    max-width: 31ch;
  }

  .hero-section,
  .hero-copy,
  .invite-card,
  .details-band,
  .split-section,
  .map-section,
  .form-section,
  .admin-dashboard {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 36px) 18px;
    transform: none;
    width: 100%;
  }

  .hero-copy h1 {
    width: min(100%, 340px);
  }

  .lede {
    width: 210px;
    max-width: calc(100vw - 96px);
    font-size: clamp(.98rem, 4.25vw, 1.1rem);
    line-height: 1.65;
  }

  .hero-mini {
    max-width: 320px;
    margin-inline: auto;
    gap: 7px;
  }

  .hero-mini span {
    min-height: 32px;
    padding: 6px 11px;
    font-size: .8rem;
  }

  .field-row,
  .map-section,
  .radio-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .portrait-medallion {
    width: min(220px, 78%);
  }

  .admin-page main {
    padding-top: 8px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .admin-auth-card,
  .admin-dashboard {
    padding: 18px;
  }

  .admin-login {
    display: block;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    padding: 24px 10px;
  }

  .admin-login h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .admin-auth-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .admin-auth-card .field,
  .admin-auth-card input,
  .admin-auth-card .button {
    min-width: 0;
  }

  .admin-dashboard-head .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  main,
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  nav {
    gap: 11px;
    padding: 11px 13px;
  }

  nav a {
    font-size: .86rem;
  }

  h1 {
    font-size: clamp(2rem, 10.2vw, 2.32rem);
  }

  .hero-copy h1 {
    width: min(100%, 286px);
  }

  .script-note {
    font-size: clamp(1.78rem, 9vw, 2.25rem);
  }

  .hero-watermark {
    width: min(380px, 112vw);
    left: 50%;
  }

  .hero-copy {
    transform: translateX(-6vw);
  }
}
