:root {
  --espresso: #2c1b13;
  --cocoa: #4a2e25;
  --walnut: #734f32;
  --honey: #bd8a3e;
  --champagne: #cdac7a;
  --cream: #fff8ef;
  --ivory: #fffdf8;
  --linen: #f4eadb;
  --text: #2c1b13;
  --muted: #806f62;
  --panel: rgba(255, 253, 248, .92);
  --panel-solid: #fffdf8;
  --border: rgba(115, 79, 50, .18);
  --danger: #9e241b;
  --success: #356d47;
  --warning: #96661f;
  --shadow: 0 28px 80px rgba(44, 27, 19, .16);
  --soft-shadow: 0 18px 42px rgba(44, 27, 19, .10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(205, 172, 122, .36), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(189, 138, 62, .20), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #f1e4d0 48%, #e8d5bb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(44, 27, 19, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 27, 19, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

body.public-body {
  overflow-x: hidden;
}

a {
  color: var(--walnut);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  color: var(--espresso);
  text-decoration: underline;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.wedding-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(205, 172, 122, .24), transparent 24%),
    linear-gradient(135deg, var(--espresso), var(--cocoa) 48%, #1d110c);
  color: var(--cream);
  transition: opacity .8s ease, visibility .8s ease, transform .8s ease;
}

.wedding-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
}

.loader-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 138, 62, .34), transparent 66%);
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-card {
  position: relative;
  width: min(320px, calc(100vw - 48px));
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(205, 172, 122, .42);
  border-radius: 34px;
  background: rgba(44, 27, 19, .42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.loader-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: .04em;
}

.loader-rings {
  position: relative;
  width: 112px;
  height: 76px;
  margin-bottom: 18px;
}

.loader-rings span {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 3px solid var(--champagne);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(205, 172, 122, .12), inset 0 0 18px rgba(205, 172, 122, .25);
  animation: ringFloat 1.8s ease-in-out infinite;
}

.loader-rings span:first-child {
  left: 12px;
  top: 4px;
}

.loader-rings span:last-child {
  right: 12px;
  bottom: 4px;
  animation-delay: .18s;
}

.loader-flourish {
  position: absolute;
  top: 28px;
  right: 34px;
  color: var(--honey);
  animation: spinSoft 2.4s linear infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(.92); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes ringFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-9px) rotate(8deg); }
}

@keyframes spinSoft {
  to { transform: rotate(360deg); }
}

.public-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding: 76px 0 142px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(44, 27, 19, .86), rgba(74, 46, 37, .76)),
    radial-gradient(circle at 86% 22%, rgba(189, 138, 62, .42), transparent 30%),
    linear-gradient(135deg, var(--espresso), var(--walnut));
  color: var(--cream);
  border-bottom: 1px solid rgba(205, 172, 122, .35);
}

.public-hero::before,
.public-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(205, 172, 122, .12);
  filter: blur(.2px);
}

.public-hero::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -130px;
  border: 1px solid rgba(205, 172, 122, .22);
}

.public-hero::after {
  width: 390px;
  height: 390px;
  left: -150px;
  bottom: -160px;
  border: 1px solid rgba(255, 248, 239, .18);
}

.hero-petals span {
  position: absolute;
  width: 16px;
  height: 22px;
  border-radius: 80% 20% 80% 20%;
  background: rgba(205, 172, 122, .58);
  filter: blur(.2px);
  animation: petalDrift 7s ease-in-out infinite;
}

.hero-petals span:nth-child(1) { top: 18%; left: 10%; animation-delay: 0s; }
.hero-petals span:nth-child(2) { top: 28%; right: 18%; animation-delay: .9s; }
.hero-petals span:nth-child(3) { top: 72%; left: 22%; animation-delay: 1.8s; }
.hero-petals span:nth-child(4) { top: 60%; right: 9%; animation-delay: 2.7s; }
.hero-petals span:nth-child(5) { top: 12%; left: 52%; animation-delay: 3.6s; }

@keyframes petalDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .42; }
  50% { transform: translate3d(18px, -28px, 0) rotate(38deg); opacity: .82; }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 950;
}



h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(46px, 8vw, 94px);
  letter-spacing: -.045em;
  margin-bottom: 14px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-script {
  margin: 0 0 24px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.hero-details span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(205, 172, 122, .34);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 248, 239, .08);
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-portrait {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 350px);
    min-height: 350px;
    margin: 0 auto;
    isolation: isolate;
}

    .hero-portrait::before,
    .hero-portrait::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-portrait::before {
        width: 326px;
        height: 326px;
        border: 1px solid rgba(255, 248, 239, .55);
        box-shadow: 0 0 0 7px rgba(205, 172, 122, .24), 0 0 0 13px rgba(255, 248, 239, .18), 0 0 0 18px rgba(189, 138, 62, .14);
        transform: rotate(-8deg);
        z-index: -1;
    }

    .hero-portrait::after {
        width: 364px;
        height: 364px;
        border: 1px solid rgba(205, 172, 122, .34);
        border-left-color: transparent;
        border-bottom-color: transparent;
        transform: rotate(22deg);
        z-index: -2;
    }

.portrait-frame {
    position: relative;
    width: 292px;
    height: 292px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding: 9px;
    background: linear-gradient(135deg, rgba(255, 248, 239, .92), rgba(205, 172, 122, .72) 42%, rgba(189, 138, 62, .92)), rgba(255, 248, 239, .12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 248, 239, .55);
}

    .portrait-frame::before {
        content: "";
        position: absolute;
        inset: -22px;
        border-radius: 50%;
        background: radial-gradient(circle at 82% 78%, rgba(205, 172, 122, .75) 0 2px, transparent 3px), radial-gradient(circle at 88% 68%, rgba(205, 172, 122, .65) 0 2px, transparent 3px), radial-gradient(circle at 92% 57%, rgba(205, 172, 122, .5) 0 2px, transparent 3px);
        border-right: 3px solid rgba(205, 172, 122, .42);
        border-bottom: 3px solid rgba(205, 172, 122, .26);
        transform: rotate(-18deg);
        pointer-events: none;
    }

    .portrait-frame::after {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 50%;
        border: 1px solid rgba(255, 248, 239, .58);
        pointer-events: none;
    }

.portrait-photo {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 6px solid rgba(255, 248, 239, .92);
    background: var(--espresso);
}

.portrait-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 6px solid rgba(255, 248, 239, .92);
    background: radial-gradient(circle at 32% 24%, rgba(255, 248, 239, .22), transparent 34%), linear-gradient(135deg, var(--walnut), var(--espresso));
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: .04em;
}

.main-card {
  position: relative;
  z-index: 2;
  margin-top: -82px;
  margin-bottom: 58px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 50px);
  backdrop-filter: blur(18px);
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(189, 138, 62, .16);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.content-section {
  position: relative;
}

.content-section + .content-section,
.admin-section + .admin-section {
  margin-top: 32px;
}

.centered {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.home-intro .lead,
.rsvp-page .lead {
  max-width: 720px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.detail-card,
.soft-box,
.panel,
.auth-card,
.feature-card,
.stat-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.detail-card {
  padding: 28px;
  background:
    linear-gradient(155deg, rgba(255, 253, 248, .92), rgba(244, 234, 219, .94)),
    radial-gradient(circle at top right, rgba(189, 138, 62, .24), transparent 36%);
}

.detail-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.detail-card p {
  margin: 8px 0;
  color: var(--muted);
  font-weight: 750;
}

.detail-kicker,
.panel-heading span,
.feature-card span {
  color: var(--honey);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 950;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
  background: rgba(255, 253, 248, .84);
}

.feature-card h3 {
  margin: 10px 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.soft-box,
.panel,
.auth-card {
  padding: 22px;
}

.panel {
  position: relative;
  overflow: hidden;
}

.decorated-panel::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 172, 122, .22), transparent 62%);
  pointer-events: none;
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading.no-margin {
  margin-bottom: 0;
}

.panel-heading h3 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.form-stack {
  display: grid;
  gap: 20px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-two {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(115, 79, 50, .23);
  background: rgba(255, 255, 255, .86);
  color: var(--text);
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--honey);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(189, 138, 62, .18);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 750;
  line-height: 1.45;
}

.check-row input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--walnut);
}

.check-stack {
  display: grid;
  gap: 12px;
  align-content: center;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--walnut), var(--cocoa));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(74, 46, 37, .24);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.button:hover {
  color: #fff;
  filter: brightness(1.04);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(74, 46, 37, .28);
}

.button.secondary {
  background: rgba(205, 172, 122, .22);
  color: var(--espresso);
  box-shadow: none;
  border: 1px solid rgba(115, 79, 50, .18);
}

.button.secondary:hover {
  color: var(--espresso);
  background: rgba(205, 172, 122, .34);
}

.button.small {
  padding: 9px 13px;
  font-size: 13px;
}

.button.button-large {
  padding: 16px 25px;
  font-size: 16px;
}

.button.danger {
  background: linear-gradient(135deg, var(--danger), #6f1712);
}

.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--walnut);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.link-button.danger,
.danger-text,
.danger {
  color: var(--danger);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.split-actions {
  justify-content: space-between;
}

.public-submit-row {
  align-items: center;
  padding-top: 8px;
}

.review-note {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.section-heading.compact {
  margin-bottom: 14px;
}

.section-heading.compact h2,
.section-heading.compact h3 {
  margin: 0;
}

.guest-list {
  display: grid;
  gap: 16px;
}

.guest-card {
  position: relative;
  border: 1px solid rgba(115, 79, 50, .20);
  border-radius: 22px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(255, 248, 239, .78));
}

.guest-card-primary {
  border-color: rgba(189, 138, 62, .42);
}

.guest-card-new {
  border-style: dashed;
}

.guest-card-title {
  margin: 0 0 14px;
  color: var(--walnut);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.card-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.status-pill,
.mini-stat {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.status-pending,
.mini-stat.pending {
  background: rgba(150, 102, 31, .14);
  color: var(--warning);
}

.status-approved,
.mini-stat.approved,
.status-yes,
.mini-stat.yes {
  background: rgba(53, 109, 71, .14);
  color: var(--success);
}

.status-declined,
.mini-stat.declined,
.mini-stat.no {
  background: rgba(158, 36, 27, .12);
  color: var(--danger);
}

.source-pill {
  background: rgba(44, 27, 19, .08);
  color: var(--espresso);
}

.alert {
  position: relative;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-weight: 850;
  border: 1px solid transparent;
}

.alert-success {
  color: var(--success);
  background: rgba(53, 109, 71, .10);
  border-color: rgba(53, 109, 71, .14);
}

.alert-error {
  color: var(--danger);
  background: rgba(158, 36, 27, .10);
  border-color: rgba(158, 36, 27, .12);
}

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

.hint {
  display: block;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.45;
}

.thank-you-panel {
  padding: 24px 0;
}

.public-footer {
  padding: 28px 0 46px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.admin-body {
  background:
    radial-gradient(circle at 0% 0%, rgba(205, 172, 122, .30), transparent 30%),
    #f4eadb;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, .90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.admin-topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-brand {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-form {
  display: inline;
}

.admin-main {
  padding: 34px 0 60px;
}

.auth-card {
  max-width: 460px;
  margin: 52px auto;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

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

.stat-card {
  padding: 20px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

tr:last-child td {
  border-bottom: 0;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 12px;
  margin-bottom: 18px;
}

.copy-input {
  min-width: 260px;
  font-size: 13px;
  padding: 9px 10px;
}

.copy-input.wide {
  flex: 1;
  min-width: 260px;
}

.link-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.approval-actions form {
  display: inline-flex;
}

.quick-note {
  min-width: 170px;
  padding: 8px 10px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero-inner,
  .intro-grid,
  .feature-row,
  .stats-grid {
    grid-template-columns: 1fr;
  }

    .hero-portrait {
        width: 100%;
        min-height: 260px;
        margin-top: 12px;
    }

        .hero-portrait::before {
            width: 244px;
            height: 244px;
        }

        .hero-portrait::after {
            width: 276px;
            height: 276px;
        }

    .portrait-frame {
        width: 220px;
        height: 220px;
    }

  .section-heading,
  .admin-topbar-inner,
  .link-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid.two,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .split-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .admin-nav {
    gap: 12px;
  }

  .public-hero {
    min-height: 390px;
    padding: 58px 0 116px;
  }

  .main-card {
    margin-top: -64px;
  }
}

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

  .wedding-loader {
    display: none;
  }
}

.hero-kicker {
    width: min(100%, 430px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin: 0 0 24px;
}

.hero-kicker-text {
    color: var(--honey, #bd8a3e);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .42em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 248, 239, .45);
}

.hero-kicker-ornament {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: minmax(64px, 1fr) auto auto auto minmax(64px, 1fr);
    align-items: center;
    gap: 10px;
    color: var(--champagne, #cdac7a);
}

.ornament-line {
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(189, 138, 62, .28), rgba(189, 138, 62, .75), rgba(189, 138, 62, .28), transparent );
}

.ornament-scroll {
    display: inline-block;
    color: var(--champagne, #cdac7a);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
    text-shadow: 0 1px 0 rgba(255, 248, 239, .5);
}

.ornament-scroll-right {
    transform: translateY(-1px) scaleX(-1);
}

.ornament-heart {
    color: var(--honey, #bd8a3e);
    font-size: 17px;
    line-height: 1;
    transform: translateY(-1px);
    text-shadow: 0 1px 0 rgba(255, 248, 239, .55);
}