/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --bg:        #FCFAFF;
  --bg-alt:    #FFFFFF;
  --body:      #000000;
  --heading:   #53436F;
  --rsvp-bg:    #001A60;
  --muted:     #FCFAFF;   /* navy — labels, eyebrows */
  --emma-name: #8C0368;   /* magenta — Emma's name accent */
  --prash-name: #002999;   /* blue — Prashanth's name accent */

  /* Derived */
  --line:      #D6CAE8;   /* lavender border */
  --black:     #001A60;   /* footer bg */
  --env-line:  #BFB0D0;   /* envelope crease */
  --env-shade: #D6CAE8;   /* envelope fold (= --line) */
  --env-body:  #EDE8F4;   /* envelope fill — light lavender */
  --card-bg:   #FFFFFF;   /* save-the-date card (= --bg-alt) */
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--body);
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ──────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ════════════════════════════════════════════════════════════════════
   LANDING PAGE — ENVELOPE
════════════════════════════════════════════════════════════════════ */
#landing {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 12vh;
  background: var(--bg);
  z-index: 100;
  transition: opacity .9s ease, transform .9s ease;
}
#landing.exit {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

.landing-date-hint {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}

/* ── Envelope container ─────────────────────────────────────── */
.envelope-scene {
  perspective: 1200px;
  width: 520px;
  height: 360px;
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.13)) drop-shadow(0 4px 12px rgba(0,0,0,.08));
  animation: floatEnv 4s ease-in-out infinite;
}
@keyframes floatEnv {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.envelope-scene.opened { animation: none; }

/* The card lives INSIDE the envelope, starts mostly hidden */
.save-card {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 22px;
  height: 320px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  transform: translateY(0px);
  transition: transform .9s cubic-bezier(.22,.68,0,1.2);
  padding: 30px 24px;
}
.save-card.risen { transform: translateY(-250px); z-index: 6; }

.save-card .eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
}
.save-card .std-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--heading);
}
.save-card .divider-line {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}
.save-card .names {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--heading);
  letter-spacing: .04em;
}
.save-card .wedding-date {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .8rem;
  letter-spacing: .35em;
  color: var(--heading);
  margin-top: 4px;
}
.save-card .card-cta {
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--heading);
  border-bottom: 1px solid var(--heading);
  padding-bottom: 2px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .5s ease .4s, color .2s;
}
.save-card .card-cta:hover { color: var(--emma-name); font-weight:500; }
.save-card.risen .card-cta { opacity: 1; }

/* Envelope body — the rectangle base */
.env-body {
  position: absolute;
  inset: 0;
  background: var(--env-body);
  border: 1px solid var(--env-line);
  z-index: 3;
}
/* Diamond fold lines on envelope front */
.env-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent calc(50% - .5px), var(--env-shade) calc(50% - .5px), var(--env-shade) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(45deg,  transparent calc(50% - .5px), var(--env-shade) calc(50% - .5px), var(--env-shade) calc(50% + .5px), transparent calc(50% + .5px));
  opacity: .7;
}

/* Envelope flap — hinged at top, folds back on open */
.env-flap-wrapper {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 200px;
  z-index: 4;
  transform-style: preserve-3d;
  transform-origin: top center;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.envelope-scene.opened .env-flap-wrapper {
  transform: rotateX(-180deg);
}

.env-flap {
  position: absolute;
  inset: 0;
  background: var(--env-body);
  border: 1px solid var(--env-line);
  clip-path: polygon(0 0, 100% 0, 50% 80%);
  backface-visibility: hidden;
}
.env-flap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.04));
  clip-path: polygon(0 0, 100% 0, 50% 80%);
}

/* Small wax-seal style circle — sits on envelope body, above all layers */
.env-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid var(--env-line);
  background: var(--env-shade);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--heading);
  z-index: 10;
}

.open-hint {
  margin-top: 2.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .8s ease .8s forwards;
  transition: opacity .4s;
}
.open-hint.hide { opacity: 0 !important; }

/* ════════════════════════════════════════════════════════════════════
   WEDDING SITE (hidden initially)
════════════════════════════════════════════════════════════════════ */
#site {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
#site.visible {
  display: block;
}
#site.shown {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0.5rem; left: 0.5rem; right: 0.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(252, 250, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(214, 202, 232, 0.5);
  border-radius: 6px;
}
.nav-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: .08em;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
nav a {
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--black);
  transition: color .2s;
}
nav a:hover { color: var(--line); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform .3s, opacity .3s;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-alt);
  padding-top: 80px;
  padding-bottom: 70px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: .95;
  color: var(--emma-name);
  margin-bottom: .4rem;
}
.hero-names em {
  font-style: italic;
  font-weight: 300;
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--prash-name);
  letter-spacing: .06em;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 2rem 0;
}
.hero-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero-detail-item {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--body);
}
.hero-detail-item span {
  font-weight: 400;
  color: var(--heading);
}
.hero-cta {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--heading);
  border: 1px solid var(--line);
  padding: .9rem 2rem;
  transition: background .25s, color .25s;
}
.hero-cta:hover { background: var(--heading); color: var(--bg); }

.hero-photo {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
}
.hero-photo-label {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── SECTION BASE ───────────────────────────────────────────────── */
section {
  padding: 8rem 6rem;
  border-top: 1px solid var(--line);
}
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.section-title em { font-style: italic; }
.section-rule {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin-bottom: 2.5rem;
}
.body-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--body);
  max-width: 52ch;
}

/* ─── SCROLL ANIMATION ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── OUR STORY ──────────────────────────────────────────────────── */
#story {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-photo {
  aspect-ratio: 1.2;
  max-height: 500px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-photo-offset {
  transform: translate(20px, 20px);
}

/* ─── DETAILS ────────────────────────────────────────────────────── */
.details-heading {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}
#details {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 3rem;
}
.details-divider {
  background: var(--line);
  align-self: stretch;
  margin: 2rem 0;
}
.detail-block-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
}
.detail-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--heading);
  margin-bottom: 1.5rem;
}
.detail-block-item {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.9;
  color: var(--body);
  letter-spacing: .02em;
}
.detail-block-item strong {
  font-weight: 400;
  color: var(--heading);
}
.detail-block-note {
  margin-top: .6rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .8rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--body);
  opacity: .65;
}
.details-photos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.details-photos img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  /* border: 1px solid var(--line); */
}
#venue-map {
  margin-top: 2rem;
  height: 240px;
  border: 1px solid var(--line);
  z-index: 0;
}

/* ─── GALLERY STRIP ─────────────────────────────────────────────── */
#gallery {
  padding: 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 20vw;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,38,38,0);
  transition: background .4s;
  z-index: 1;
}
.gallery-item:hover::before { background: rgba(38,38,38,.15); }

/* ─── RSVP ───────────────────────────────────────────────────────── */
#rsvp {
  background: var(--rsvp-bg);
  color: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
#rsvp .section-title { color: var(--bg); }
#rsvp .section-eyebrow { color: var(--muted); }
#rsvp .section-rule { background: rgba(255,255,255,.15); }
#rsvp .body-text { color: var(--bg-alt); }

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: .6rem 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  color: var(--bg);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-input::placeholder { color: rgba(246,240,232,.3); }
.form-input:focus { border-bottom-color: var(--bg); }
.form-select {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: .6rem 1.2rem .6rem 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--bg);
  outline: none;
  width: 100%;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .2rem center;
  transition: border-color .2s;
}
.form-select:focus { border-bottom-color: var(--bg); }
.form-select option { background: var(--rsvp-bg); color: var(--bg); }
.form-submit {
  margin-top: .5rem;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  padding: .9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bg);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.form-submit:hover { background: var(--bg); color: var(--heading); }

/* ─── RSVP ERROR ─────────────────────────────────────────────────── */
.rsvp-error {
  display: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  color: #e8a0a0;
}

/* ─── ACCOMMODATIONS ────────────────────────────────────────────── */
#accommodations {
  background: var(--bg-alt);
}
.accom-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.accom-card {
  border: 1px solid var(--line);
  background: var(--bg);
}
.accom-card-photo {
  aspect-ratio: 3/2;
  background: var(--line);
  position: relative;
}
.accom-card-photo::after {
  content: 'Photo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.accom-card-body {
  padding: 1.4rem;
}
.accom-card-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.accom-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: .8rem;
}
.accom-card-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--body);
}
.accom-notice {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
}
.accom-notice strong { font-weight: 400; color: var(--heading); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 5rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
  color: var(--bg);
  line-height: 1;
}
.footer-right {
  text-align: right;
}
.footer-date {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(246,240,232,.5);
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.footer-note {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bg);
}

/* ─── KEYFRAMES ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE (basic) ──────────────────────────────────────── */
@media (max-width: 860px) {
  nav { padding: 1.2rem 1.5rem; }
  nav ul {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(252, 250, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(214, 202, 232, 0.5);
    border-radius: 6px;
    padding: .5rem 0;
  }
  nav ul li a {
    display: block;
    padding: .9rem 1.8rem;
  }
  nav.menu-open ul { display: flex; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 50vw; }
  #story { grid-template-columns: 1fr; }
  #details { grid-template-columns: 1fr; gap: 2rem; }
  .details-divider { height: 1px; width: 100%; }
  .details-photos { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 75vw; }
  #rsvp { grid-template-columns: 1fr; gap: 3rem; }
  .accom-grid { grid-template-columns: 1fr; }
  section { padding: 5rem 1.8rem; }
  .hero-text { padding: 5rem 2rem; }
  footer { padding: 3rem 1.8rem; flex-direction: column; gap: 2rem; align-items: flex-start; }
  .envelope-scene { width: 320px; height: 230px; }
  #landing { padding-top: 20vh; padding-bottom: 4vh; }
  .save-card { height: 210px; padding: 18px 16px; gap: 6px; left: 24px; right: 24px; bottom: 16px; }
  .save-card.risen { transform: translateY(-175px); }
  .save-card .std-headline { font-size: 1.2rem; }
  .save-card .names { font-size: 1.3rem; }
  .save-card .wedding-date { font-size: .68rem; }
  .save-card .eyebrow { font-size: .58rem; }
}
