:root {
  --ink: #333333;
  --muted: #595959;
  --paper: #ffffff;
  --soft: #f4efe1;
  --purple: #450084;
  --purple-light: #dacce6;
  --gold: #cbb677;
  --gold-dark: #ad9c65;
  --line: rgba(69, 0, 132, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: linear-gradient(180deg, rgba(69, 0, 132, 0.07), transparent 22rem), var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

body::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: clamp(5rem, 10vw, 12rem);
  width: clamp(8rem, 18vw, 17rem);
  aspect-ratio: 3372 / 3072;
  background: url("/static/family_site/source_assets/tassle.png") center / contain no-repeat;
  filter:
    drop-shadow(0 0.45rem 0.35rem rgba(32, 18, 45, 0.2))
    drop-shadow(0 1.4rem 1.5rem rgba(69, 0, 132, 0.2));
  pointer-events: none;
  z-index: 4;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}

.brand {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(69, 0, 132, 0.22);
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple);
  box-shadow: 0 0.45rem 1rem rgba(69, 0, 132, 0.12);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.fly-in {
  opacity: 0;
  transform: translate3d(var(--fly-distance, 4rem), 2rem, 0);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.fly-in.from-left {
  --fly-distance: -4rem;
}

.fly-in.from-right {
  --fly-distance: 4rem;
}

.fly-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-section ~ .fly-in {
  --fly-distance: 0;
}

.announcement-hero,
.tools-hero,
.coming-soon,
.details-band,
.note-section,
.tool-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.coming-soon {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 5rem);
}

.coming-soon h1 {
  max-width: 12ch;
}

.announcement-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 5rem);
}

.announcement-hero::before {
  content: "";
  position: absolute;
  inset: auto auto clamp(3.5rem, 8vw, 7rem) 50%;
  width: min(30rem, 58vw);
  aspect-ratio: 1;
  background: url("/static/family_site/source_assets/JMU-Seal-RGB-purple.png") center / contain no-repeat;
  opacity: 0.055;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jmu-signature-watermark {
  position: absolute;
  left: 50%;
  bottom: clamp(0.5rem, 2vw, 1.25rem);
  width: min(28rem, 58vw);
  height: auto;
  opacity: 0.13;
  transform: translateX(-50%);
  filter:
    drop-shadow(0.08rem 0.1rem 0 rgba(203, 182, 119, 0.75))
    drop-shadow(0 0.65rem 1rem rgba(203, 182, 119, 0.22));
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.portrait-panel {
  position: relative;
  z-index: 1;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 8.5ch;
  color: var(--purple);
  font-size: clamp(4rem, 8vw, 6.9rem);
  text-shadow:
    0.035em 0.035em 0 var(--gold),
    0 0 1.1rem rgba(203, 182, 119, 0.42);
}

.graduate-script {
  position: relative;
  display: inline-block;
  margin: -0.2rem 0 0;
  color: var(--gold-dark);
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.75rem, 7vw, 6.5rem);
  line-height: 0.9;
  text-shadow:
    0.035em 0.035em 0 var(--purple),
    0 0 1.1rem rgba(203, 182, 119, 0.58);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.lede {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
}

.venmo-button {
  gap: 0.55rem;
}

.venmo-mark {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  background: var(--gold);
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.button.secondary {
  border-color: rgba(69, 0, 132, 0.24);
  background: var(--soft);
  color: var(--purple);
}

.portrait-panel {
  position: relative;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.photo-panel {
  padding: 0;
  filter: drop-shadow(0 1.2rem 1.6rem rgba(69, 0, 132, 0.18));
}

.photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  box-shadow:
    -1.1rem 1.1rem 0 rgba(203, 182, 119, 0.2),
    0 0 0 0.35rem rgba(255, 255, 255, 0.95),
    0 1.8rem 4rem rgba(69, 0, 132, 0.22);
  object-fit: contain;
}

.details-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.detail-grid,
.tool-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-grid {
  margin-top: 2rem;
}

.detail-grid article,
.tool-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.45);
  padding: 1.25rem;
}

.detail-grid span,
.tool-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid strong {
  font-size: 1.2rem;
  line-height: 1.35;
}

.announcement-note {
  max-width: 58rem;
  margin: 2rem 0 0 auto;
  border-left: 0.45rem solid var(--gold);
  background: linear-gradient(90deg, rgba(203, 182, 119, 0.22), rgba(255, 255, 255, 0));
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.7;
  padding: 1.3rem 0 1.3rem 1.5rem;
}

.announcement-documents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 58rem;
  margin: 1.35rem 0 0 auto;
}

.announcement-documents a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(203, 182, 119, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #330063);
  color: #fff;
  padding: 0.72rem 1rem 0.72rem 0.72rem;
  text-decoration: none;
  box-shadow:
    0 0.25rem 0 rgba(203, 182, 119, 0.45),
    0 0.9rem 2rem rgba(69, 0, 132, 0.12);
}

.announcement-documents a:hover,
.announcement-documents a:focus {
  transform: translateY(-1px);
  box-shadow:
    0 0.28rem 0 rgba(203, 182, 119, 0.65),
    0 1rem 2.2rem rgba(69, 0, 132, 0.16);
}

.announcement-documents span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(69, 0, 132, 0.12);
}

.announcement-documents strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.announcement-documents small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.note-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.note-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.gallery-section,
.share-section,
.guestbook-list,
.gift-section,
.message-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.gallery-section {
  border-bottom: 1px solid var(--line);
}

.gallery-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 48rem;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.gallery-heading h2 {
  color: var(--purple);
  text-shadow: 0.025em 0.025em 0 rgba(203, 182, 119, 0.8);
}

.gallery-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.music-player {
  display: none;
}

.slideshow-button {
  width: fit-content;
  margin-top: 0.55rem;
}

.guestbook-grid,
.share-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(13rem, 0.7fr);
  grid-template-rows: repeat(2, minmax(13rem, 18rem));
  gap: 1rem;
  max-height: 38rem;
}

.album-photo {
  position: relative;
  display: none;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1rem 2.5rem rgba(69, 0, 132, 0.1);
}

.album-photo.is-active,
.album-photo.is-preview {
  display: block;
}

.album-photo.is-active {
  grid-row: span 2;
}

.photo-open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}

.album-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.album-photo.is-active img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.album-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.25rem;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(69, 0, 132, 0.78));
  color: #fff;
  line-height: 1.5;
  pointer-events: none;
}

.album-photo figcaption strong {
  color: #fff;
}

.heart-button {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(69, 0, 132, 0.76);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 0.75rem;
  backdrop-filter: blur(10px);
}

.heart-button span {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.heart-button.is-hearted {
  background: var(--gold);
  color: var(--purple);
}

.heart-button.is-hearted span {
  color: var(--purple);
}

.lightbox[hidden] {
  display: none;
}

body.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(18, 0, 35, 0.88);
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox.is-slideshow::before {
  content: "Slideshow";
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 21;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(69, 0, 132, 0.62);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.55rem 0.8rem;
  text-transform: uppercase;
}

.lightbox figure {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: min(92vw, 62rem);
  max-height: 92vh;
  margin: 0;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 0.35rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.36);
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
}

.lightbox figcaption strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
}

.lightbox figcaption span {
  color: #fff7d7;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 21;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

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

.form-panel,
.quote-card,
.gift-section {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-panel h2,
.gift-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

form p {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
}

input[type="file"] {
  background: rgba(255, 255, 255, 0.7);
}

.message-band {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.message-band p {
  margin: 0;
  border: 1px solid rgba(69, 0, 132, 0.22);
  border-radius: 0.75rem;
  background: rgba(69, 0, 132, 0.1);
  color: var(--purple);
  font-weight: 800;
  padding: 1rem;
}

.message-carousel {
  position: relative;
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.message-track {
  display: grid;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.message-track:active {
  cursor: grabbing;
}

.guestbook-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.guestbook-heading h2 {
  color: var(--purple);
  text-shadow: 0.025em 0.025em 0 rgba(203, 182, 119, 0.75);
}

.quote-card {
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  overflow: hidden;
  transform: translateX(3rem);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  width: 100%;
}

.quote-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-card.is-exiting-left {
  transform: translateX(-3rem);
}

.message-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.message-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(69, 0, 132, 0.2);
  transition:
    background 240ms ease,
    transform 240ms ease,
    width 240ms ease;
}

.message-dot.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0.2rem 0.8rem rgba(203, 182, 119, 0.45);
}

.quote-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -1.2rem;
  color: rgba(203, 182, 119, 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.quote-from {
  position: relative;
  margin: 0 0 1rem;
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card p {
  position: relative;
  max-width: 58rem;
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-card footer {
  position: relative;
  display: grid;
  gap: 0.2rem;
  color: var(--purple);
}

.quote-card footer span {
  color: var(--gold-dark);
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.gift-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

.venmo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(69, 0, 132, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.9rem;
  box-shadow: 0 1rem 2.5rem rgba(69, 0, 132, 0.12);
}

.venmo-card img {
  display: block;
  width: clamp(5.25rem, 9vw, 6.75rem);
  height: auto;
  border: 0.28rem solid #fff;
  border-radius: 0.65rem;
}

.venmo-card div {
  display: grid;
  gap: 0.8rem;
}

.venmo-card strong {
  color: var(--purple);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.empty-note {
  color: var(--muted);
  line-height: 1.6;
}

.tools-hero {
  padding-bottom: 1.5rem;
}

.tools-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 9vw, 7rem);
}

.tool-list {
  padding-top: 1rem;
}

.tool-card h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.tool-card p {
  color: var(--muted);
  line-height: 1.6;
}

.easy-admin-body {
  background:
    linear-gradient(180deg, rgba(69, 0, 132, 0.08), transparent 18rem),
    #fff;
}

.easy-admin-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 1.5rem) 4rem;
}

.easy-admin-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0 1.2rem;
  font-weight: 900;
}

.easy-admin-top a {
  color: var(--purple);
  text-decoration: none;
}

.easy-hero {
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--purple), #330063);
  color: #fff;
  padding: clamp(1.3rem, 5vw, 2rem);
  box-shadow: 0 1rem 2.5rem rgba(69, 0, 132, 0.14);
}

.easy-hero.compact {
  margin-bottom: 1rem;
}

.easy-hero .eyebrow {
  color: var(--gold);
}

.easy-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 12vw, 4.8rem);
  max-width: none;
  text-shadow: 0.035em 0.035em 0 rgba(203, 182, 119, 0.55);
}

.easy-hero p:last-child {
  margin: 0.8rem 0 0;
  color: #fff7d7;
  line-height: 1.55;
}

.easy-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.easy-grid a,
.easy-list a,
.easy-panel {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.8rem 2rem rgba(69, 0, 132, 0.07);
}

.easy-grid a,
.easy-list a {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  padding: 1.1rem;
  text-decoration: none;
}

.easy-grid span,
.easy-list span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.easy-grid strong,
.easy-list strong {
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.easy-grid small,
.easy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.easy-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
}

.easy-panel p {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: var(--purple);
  font-weight: 900;
}

.easy-panel input,
.easy-panel textarea,
.easy-panel select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 1rem;
}

.easy-panel input[type="checkbox"] {
  width: 1.4rem;
  min-height: 1.4rem;
}

.easy-list {
  display: grid;
  gap: 0.85rem;
}

.easy-action-row {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 1rem;
}

.photo-list-item {
  grid-template-columns: 5.5rem minmax(0, 1fr);
  grid-template-areas:
    "image status"
    "image title"
    "image text"
    "image meta";
  align-items: center;
  column-gap: 1rem;
}

.photo-list-item img {
  grid-area: image;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.7rem;
  object-fit: cover;
  box-shadow: 0 0.65rem 1.4rem rgba(69, 0, 132, 0.14);
}

.photo-list-item span {
  grid-area: status;
}

.photo-list-item strong {
  grid-area: title;
}

.photo-list-item p {
  grid-area: text;
}

.photo-list-item small {
  grid-area: meta;
  color: var(--gold-dark);
  font-weight: 900;
}

.easy-messages p {
  border-radius: 0.8rem;
  background: rgba(203, 182, 119, 0.2);
  color: var(--purple);
  font-weight: 900;
  padding: 0.9rem 1rem;
}

@media (max-width: 820px) {
  body::before {
    top: 0.7rem;
    right: clamp(0.5rem, 4vw, 2rem);
    width: clamp(7rem, 28vw, 10rem);
  }

  .announcement-hero,
  .section-heading,
  .note-section {
    grid-template-columns: 1fr;
  }

  .announcement-hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 5.25rem;
  }

  .announcement-hero::before {
    inset: 3.6rem auto auto 50%;
    width: min(19rem, 72vw);
    opacity: 0.08;
  }

  .jmu-signature-watermark {
    top: 18.2rem;
    bottom: auto;
    width: min(19rem, 76vw);
    opacity: 0.18;
  }

  .detail-grid,
  .tool-list,
  .share-section {
    grid-template-columns: 1fr;
  }

  .message-carousel {
    gap: 0.75rem;
  }

  .message-track {
    min-width: 0;
  }

  .photo-strip {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(16rem, 22rem));
    max-height: none;
  }

  .album-photo.is-active {
    grid-row: auto;
  }

  .gift-section {
    display: grid;
  }

  .venmo-card {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fly-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
