:root {
  --milk: #f2e7dc;
  --cream: #fcf6ef;
  --cream-2: #f6ece3;
  --ink: #2b2521;
  --muted: #6d615b;
  --burgundy: #7d3b46;
  --burgundy-dark: #5f2731;
  --rose: #c98f8a;
  --green: #566348;
  --gold: #9a714a;
  --line: rgba(138, 63, 77, 0.20);
  --shadow: 0 28px 80px rgba(82, 57, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.92), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(201,143,138,.18), transparent 26%),
    radial-gradient(circle at 15% 88%, rgba(138,63,77,.10), transparent 28%),
    linear-gradient(180deg, #f6eee5 0%, #fffaf4 38%, #f4eadf 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(138,63,77,.035) 1px, transparent 1px),
    linear-gradient(rgba(138,63,77,.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%);
  z-index: 1;
}

.paper-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(rgba(42,37,34,.10) .65px, transparent .65px),
    radial-gradient(rgba(42,37,34,.08) .55px, transparent .55px);
  background-size: 13px 13px, 19px 19px;
  background-position: 0 0, 7px 8px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 238, 229, .76);
  border-bottom: 1px solid rgba(138,63,77,.13);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 88px repeat(3, 1fr);
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  text-align: center;
  color: #3b322e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .82;
}

.nav a:hover {
  color: var(--burgundy);
  opacity: 1;
}

.monogram {
  font-family: "Cormorant Garamond", serif;
  color: var(--burgundy);
  text-align: center;
  font-size: 32px;
  line-height: .82;
}

.monogram span {
  font-size: .55em;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(380px, 610px) minmax(250px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0px 5vw 70px;
  border-bottom: 1px solid rgba(138,63,77,.13);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.72), transparent 30%),
    linear-gradient(180deg, rgba(255,248,239,.30), rgba(255,248,239,.75));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(138,63,77,.10);
  border-radius: 50%;
  z-index: -1;
}

.hero-left,
.hero-right,
.hero-center {
  position: relative;
  z-index: 2;
}

.decor-card {
  align-self: stretch;
  display: flex;
  align-items: end;
  min-height: 560px;
}

.bouquet-svg {
  width: min(32vw, 420px);
  min-width: 270px;
  opacity: .96;
  transform: translateX(-18px);
}

.bouquet-svg svg {
  width: 100%;
  overflow: visible;
}

.stem {
  fill: none;
  stroke: rgba(101,116,87,.72);
  stroke-width: 3.3;
  stroke-linecap: round;
}

.stem.thin {
  stroke-width: 2.1;
}

.flower ellipse {
  stroke: rgba(138,63,77,.42);
  stroke-width: 1.1;
}

.flower circle {
  fill: #a16c40;
}

.flower.burgundy ellipse { fill: rgba(138,63,77,.70); }
.flower.rose ellipse { fill: rgba(201,143,138,.86); }
.flower.cream ellipse { fill: rgba(238,221,190,.93); }
.flower.small { transform-origin: center; }

.berries circle {
  fill: #efe1bd;
  stroke: rgba(101,116,87,.52);
}

.still-life {
  position: absolute;
  left: 22px;
  bottom: 42px;
  width: 280px;
  height: 170px;
  border-bottom: 22px solid rgba(96, 64, 42, .50);
  opacity: .78;
}

.candle {
  position: absolute;
  left: 78px;
  top: 24px;
  width: 23px;
  height: 94px;
  background: linear-gradient(90deg, #eadbc3, #fff7e9, #d2b78f);
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 0 28px rgba(255,207,132,.72);
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -25px;
  width: 13px;
  height: 25px;
  border-radius: 60% 60% 50% 50%;
  transform: translateX(-50%);
  background: #ffbd61;
  box-shadow: 0 0 26px rgba(255,182,83,.90);
}

.glass {
  position: absolute;
  left: 135px;
  top: 30px;
  width: 72px;
  height: 112px;
  border: 2px solid rgba(96, 64, 42, .32);
  border-top-width: 3px;
  border-radius: 50% 50% 42% 42%;
}

.glass::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 34px;
  border-radius: 0 0 34px 34px;
  background: rgba(187, 115, 85, .32);
}

.linen {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 160px;
  height: 62px;
  border-radius: 60% 40% 55% 45%;
  background: rgba(201,143,138,.42);
  transform: rotate(-8deg);
}

.hero-center {
  text-align: center;
  padding: 56px 28px 44px;
}

.overline {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: 128px;
  line-height: .85;
}

.hero h1 span {
  font-family: "Marck Script", cursive;
  font-size: .25em;
  color: var(--burgundy-dark);
}

.date {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--burgundy);
  font-size: 28px;
  font-weight: 700;
}

.weekday {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.lead {
  max-width: 430px;
  margin: 0 auto 30px;
  color: #443a35;
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  min-width: 215px;
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border: 1px solid var(--burgundy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 800;
  transition: .22s ease;
}

.btn-main {
  background: var(--burgundy);
  color: white;
}

.btn-light {
  background: rgba(255,248,239,.58);
  color: var(--burgundy);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(111,47,61,.16);
}

.hero-right {
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-polaroid {
  width: min(31vw, 345px);
  min-width: 260px;
  background: #fffaf4;
  padding: 14px 14px 52px;
  box-shadow:
    0 30px 72px rgba(82, 57, 43, .18),
    0 10px 22px rgba(82, 57, 43, .10);
  transform: rotate(4deg);
  position: relative;
  z-index: 2;
}

.photo {
  min-height: 268px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  background:
    linear-gradient(rgba(45,34,26,.06), rgba(45,34,26,.30)),
    radial-gradient(circle at 68% 18%, rgba(255,221,167,.96), transparent 22%),
    linear-gradient(130deg, #7f8c68 0%, #4b4335 48%, #171513 100%);
}

.wedding-table {
  background:
    linear-gradient(rgba(45,34,26,.04), rgba(45,34,26,.26)),
    radial-gradient(circle at 70% 18%, rgba(255,220,157,.95), transparent 20%),
    linear-gradient(150deg, #9c9a72, #4a4934 42%, #201b18 80%);
}

.glasses {
  background:
    linear-gradient(rgba(45,34,26,.06), rgba(45,34,26,.24)),
    radial-gradient(circle at 76% 12%, rgba(255,232,184,.95), transparent 22%),
    linear-gradient(140deg, #e0c4ad 0%, #915b52 48%, #352824 100%);
}

.tape {
  position: absolute;
  width: 96px;
  height: 28px;
  background: rgba(229, 205, 178, .70);
  box-shadow: 0 3px 10px rgba(75,57,42,.08);
}

.tape-one {
  top: -12px;
  right: 48px;
  transform: rotate(7deg);
}

.tape-two {
  top: -10px;
  left: 48px;
  transform: rotate(-7deg);
}

.seal {
  position: absolute;
  right: -24px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: .54;
  color: #fff0ea;
  background: radial-gradient(circle, #9e4b59, #6f2f3d);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.08), 0 14px 28px rgba(111,47,61,.24);
}

.seal small {
  font-size: 12px;
}

.line-drawing {
  position: absolute;
  right: -12px;
  bottom: 56px;
  width: 132px;
  opacity: .34;
}

.line-drawing svg {
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 2;
}

.section {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 82px 26px;
}

.section-intro {
  display: grid;
  grid-template-columns: .82fr 1.35fr;
  gap: 58px;
  align-items: center;
}

.intro-text {
  padding-left: 10px;
}

.intro-text::before {
  content: "⌁";
  display: block;
  color: rgba(138,63,77,.28);
  font-size: 72px;
  line-height: .7;
  transform: rotate(-18deg);
}

h2 {
  font-size: 64px;
  line-height: .92;
  margin: 0 0 28px;
}

p {
  color: #433934;
}

.handwritten {
  margin-top: 18px;
  font-family: "Marck Script", cursive;
  color: var(--burgundy);
  font-size: 29px;
  line-height: 1.25;
}

.details-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,248,239,.80);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(82,57,43,.08);
}

.details-board article {
  min-height: 210px;
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.details-board article:nth-child(3) {
  border-right: 0;
}

.icon {
  font-family: "Cormorant Garamond", serif;
  color: var(--burgundy);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  margin: 0 0 9px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.details-board p {
  margin: 0;
  font-size: 14px;
}

.place-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-top: 1px solid var(--line);
}

.place-row > div {
  padding: 26px 34px;
}

.place-row > div + div {
  border-left: 1px solid var(--line);
}

.place-row span {
  color: var(--muted);
}

.place-row a {
  color: var(--burgundy);
}

.center {
  text-align: center;
}

.schedule-section {
  padding-top: 70px;
  border-top: 1px solid rgba(138,63,77,.10);
}

.timeline {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 66px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,63,77,.75), transparent);
}

.timeline article {
  position: relative;
  text-align: center;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 59px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 7px rgba(138,63,77,.08);
  z-index: 2;
}

.timeline-icon {
  margin-bottom: 34px;
  font-size: 33px;
}

.timeline time {
  display: block;
  margin-bottom: 9px;
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
}

.timeline p {
  margin: 0 auto;
  max-width: 148px;
  font-size: 13px;
  line-height: 1.45;
}

.cards-section {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 40px;
  padding-top: 42px;
}

.content-card {
  position: relative;
  overflow: hidden;
  min-height: 395px;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 90% 82%, rgba(201,143,138,.16), transparent 25%),
    rgba(255,248,239,.80);
  border: 1px solid rgba(138,63,77,.13);
  box-shadow: 0 24px 70px rgba(82,57,43,.08);
}

.content-card::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -86px;
  width: 260px;
  height: 290px;
  border: 1px solid rgba(101,116,87,.24);
  border-radius: 54% 46% 42% 58%;
  transform: rotate(-22deg);
}

.palette {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.palette span {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--color);
  box-shadow: inset 0 0 0 1px rgba(43,37,33,.09), 0 7px 18px rgba(82,57,43,.08);
}

.gift-card::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 160px;
  height: 210px;
  opacity: .20;
  background:
    radial-gradient(circle at 40% 20%, var(--rose) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 35%, var(--burgundy) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 48%, var(--rose) 0 5px, transparent 6px),
    linear-gradient(75deg, transparent 49%, var(--green) 50% 51%, transparent 52%),
    linear-gradient(95deg, transparent 49%, var(--green) 50% 51%, transparent 52%);
}

.know-section {
  display: grid;
  grid-template-columns: .55fr 1.35fr .55fr;
  gap: 34px;
  align-items: center;
}

.know-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.know-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.know-grid span {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

.know-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.48;
}

.photo-strip {
  position: relative;
  min-height: 310px;
}

.small-photo {
  position: absolute;
  min-height: 185px;
  width: 210px;
  box-shadow:
    0 24px 58px rgba(82, 57, 43, .17),
    0 8px 18px rgba(82, 57, 43, .10);
  border: 12px solid #fffaf4;
  border-bottom-width: 36px;
}

.small-photo:first-child {
  right: 52px;
  top: 10px;
  transform: rotate(7deg);
}

.small-photo:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(-5deg);
}

.rsvp-section {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 42px;
  align-items: start;
  border-top: 1px solid rgba(138,63,77,.12);
}

.rsvp-intro {
  grid-column: 1 / -1;
  max-width: 790px;
}

.rsvp-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.rsvp-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rsvp-form span {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rsvp-form input,
.rsvp-form select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(138,63,77,.24);
  background: rgba(255,250,243,.95);
  color: var(--ink);
  font: inherit;
  outline: none;
  border-radius: 0;
}

.rsvp-form input:focus,
.rsvp-form select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(138,63,77,.08);
}

.rsvp-form .wide {
  grid-column: span 2;
}

.rsvp-form button,
.form-message {
  grid-column: 1 / -1;
}

.rsvp-form button {
  min-height: 54px;
  border: 0;
  background: var(--burgundy);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}

.rsvp-form button:hover {
  background: var(--burgundy-dark);
}

.form-message {
  min-height: 23px;
  margin: 0;
  color: var(--burgundy);
  font-weight: 700;
}

.rsvp-polaroid {
  position: relative;
  margin-top: 12px;
  background: #fffaf4;
  padding: 13px 13px 46px;
  box-shadow:
    0 28px 66px rgba(82, 57, 43, .18),
    0 9px 20px rgba(82, 57, 43, .10);
  transform: rotate(3deg);
}

.rsvp-polaroid .photo {
  min-height: 245px;
}

.final-screen {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 95px 26px 110px;
  background:
    radial-gradient(circle at 16% 82%, rgba(138,63,77,.16), transparent 23%),
    radial-gradient(circle at 86% 80%, rgba(101,116,87,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,248,239,.72), rgba(244,234,223,.98));
  border-top: 1px solid rgba(138,63,77,.13);
}

.final-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4%;
  right: -4%;
  height: 36px;
  background: #fffaf4;
  clip-path: polygon(0 45%, 7% 66%, 14% 40%, 24% 64%, 34% 42%, 43% 62%, 52% 38%, 62% 65%, 72% 41%, 82% 66%, 92% 43%, 100% 62%, 100% 0, 0 0);
}

.footer-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 50px 48px;
  text-align: center;
  background: rgba(255,248,239,.68);
  border: 1px solid rgba(138,63,77,.12);
  box-shadow: 0 24px 80px rgba(82,57,43,.08);
}

.footer-card h2 {
  margin-bottom: 22px;
}

.footer-card p {
  margin: 8px auto;
  max-width: 520px;
  font-size: 17px;
}

.footer-bouquet {
  position: absolute;
  left: 4%;
  bottom: 0;
  width: 240px;
  height: 270px;
  opacity: .42;
  background:
    radial-gradient(circle at 35% 20%, var(--burgundy) 0 12px, transparent 13px),
    radial-gradient(circle at 55% 28%, var(--rose) 0 10px, transparent 11px),
    radial-gradient(circle at 26% 42%, var(--rose) 0 9px, transparent 10px),
    linear-gradient(68deg, transparent 49%, var(--green) 50% 51%, transparent 52%),
    linear-gradient(92deg, transparent 49%, var(--green) 50% 51%, transparent 52%),
    linear-gradient(110deg, transparent 49%, var(--green) 50% 51%, transparent 52%);
}

.house {
  position: absolute;
  right: 7%;
  bottom: 34px;
  width: 245px;
  opacity: .28;
}

.house svg {
  width: 100%;
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
  }

  .hero-left {
    position: absolute;
    left: -100px;
    bottom: 0;
    opacity: .34;
  }

  .hero-right {
    position: absolute;
    right: -80px;
    top: 120px;
    opacity: .34;
  }

  .hero-center {
    max-width: 680px;
    margin: 0 auto;
  }

  .section-intro,
  .cards-section,
  .know-section,
  .rsvp-section {
    grid-template-columns: 1fr;
  }

  .photo-strip,
  .rsvp-polaroid {
    display: none;
  }

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

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }

  .timeline::before,
  .timeline article::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: none;
  }

  .hero {
    padding: 86px 18px 62px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .details-board,
  .place-row,
  .timeline,
  .know-grid,
  .rsvp-form {
    grid-template-columns: 1fr;
  }

  .details-board article,
  .place-row > div {
    border-right: 0;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .rsvp-form .wide {
    grid-column: auto;
  }

  .content-card,
  .footer-card {
    padding: 34px 24px;
  }

  .footer-bouquet,
  .house {
    opacity: .18;
  }
}

/* Gift block with animal donation idea */
.animal-gift-card {
  min-height: 560px;
}

.animal-gift-card .handwritten {
  margin-bottom: 0;
}

.animal-family {
  margin: 26px 0 22px;
  display: grid;
  grid-template-columns: 82px 82px 1fr;
  gap: 14px;
  align-items: center;
}

.animal-photo {
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  font-family: "Marck Script", cursive;
  font-size: 25px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,236,200,.85), transparent 28%),
    linear-gradient(145deg, #7e8c68, #8a3f4d);
  box-shadow: 0 10px 24px rgba(82,57,43,.12);
  border: 6px solid rgba(255,248,239,.82);
}

.animal-family p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5b504a;
}

.gift-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 800;
  transition: .22s ease;
}

.gift-link:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(111,47,61,.16);
}

@media (max-width: 760px) {
  .animal-family {
    grid-template-columns: 72px 72px;
  }

  .animal-family p {
    grid-column: 1 / -1;
  }

  .animal-photo {
    width: 72px;
    height: 72px;
  }
}


/* Real photos for Yukki and Masya */
.animal-family {
  grid-template-columns: 106px 106px 1fr;
  gap: 16px;
  align-items: center;
}

.animal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.real-photo {
  width: 96px;
  height: 96px;
  overflow: hidden;
  padding: 0;
  border: 6px solid rgba(255,248,239,.86);
  background: none;
}

.real-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.animal-name {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .animal-family {
    grid-template-columns: 1fr 1fr;
  }

  .animal-card {
    justify-self: center;
  }

  .real-photo {
    width: 86px;
    height: 86px;
  }

  .animal-name {
    font-size: 11px;
  }
}


/* Main couple photo in hero polaroid */
.real-main-photo {
  overflow: hidden;
  background: #e8d8c8;
}

.real-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 268px;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}


/* v7 vibe adjustments */
body {
  background:
    radial-gradient(circle at 7% 10%, rgba(255,255,255,.90), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(125,59,70,.12), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(86,99,72,.11), transparent 28%),
    linear-gradient(180deg, #f9f3ec 0%, #fbf7f1 48%, #f1e4d7 100%);
}

.hero::before {
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,.74), transparent 28%),
    linear-gradient(180deg, rgba(252,246,239,.46), rgba(252,246,239,.82));
}

.section,
.final-screen {
  max-width: 1280px;
}

.intro-text,
.content-card,
.details-board,
.footer-card,
.rsvp-polaroid,
.photo-polaroid {
  box-shadow: 0 24px 70px rgba(82,57,43,.07);
}

.short-timeline {
  grid-template-columns: repeat(4, 1fr);
}

.short-timeline::before {
  left: 10%;
  right: 10%;
}

.know-grid-short {
  grid-template-columns: repeat(2, 1fr);
}

.real-stack-photo {
  overflow: hidden;
  background: #e8dccf;
}

.real-stack-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.real-main-photo img {
  object-position: center 36%;
}

.tilt-one {
  right: 90px;
  top: 8px;
  transform: rotate(-5deg);
}

.tilt-two {
  right: 8px;
  bottom: 0;
  transform: rotate(5deg);
}

.rsvp-polaroid .real-stack-photo img {
  object-position: center center;
}

@media (max-width: 1120px) {
  .short-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .know-grid-short {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .short-timeline,
  .know-grid-short {
    grid-template-columns: 1fr;
  }
}


/* Professional polish, invitation suite, motion and admin page */
:root {
  --mist: #e9eeee;
  --sage-soft: #cfd9cf;
  --sage-deep: #4f604d;
  --plum: #6f2f3d;
  --paper: #fffaf3;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.92), transparent 23%),
    radial-gradient(circle at 88% 16%, rgba(207,217,207,.42), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(111,47,61,.12), transparent 25%),
    linear-gradient(180deg, #eef2ed 0%, #fbf8f2 42%, #f3e8dc 100%);
}

.hero h1,
h2 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: 128px;
}

h2 {
  font-size: 64px;
}

.monogram {
  color: var(--plum);
}

.hero {
  grid-template-columns: minmax(260px, .92fr) minmax(390px, 620px) minmax(270px, 1fr);
}

.invitation-suite {
  align-self: stretch;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 900px;
}

.suite-shadow {
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 58px;
  height: 62px;
  border-radius: 50%;
  background: rgba(82,57,43,.14);
  filter: blur(18px);
  transform: rotate(-7deg);
  z-index: -1;
}

.suite-card {
  position: absolute;
  width: min(27vw, 310px);
  min-width: 250px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,250,243,.96)),
    var(--paper);
  border: 1px solid rgba(111,47,61,.14);
  box-shadow: 0 28px 70px rgba(82,57,43,.10);
}

.suite-card-main {
  --base-transform: translate(-50%, -50%) rotate(-8deg);
  left: 50%;
  top: 50%;
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 42px 32px;
  text-align: center;
  transform: var(--base-transform);
}

.suite-card-main::before,
.suite-card-main::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(79,96,77,.18);
  pointer-events: none;
}

.suite-card-main::after {
  inset: 25px;
  border-color: rgba(111,47,61,.12);
}

.suite-kicker,
.suite-card-note span {
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.suite-card-main strong {
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 47px;
  font-weight: 600;
  line-height: .96;
}

.suite-card-main strong span {
  color: var(--gold);
  font-family: "Marck Script", cursive;
  font-size: .55em;
}

.suite-card-main small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.suite-card-note {
  --base-transform: rotate(7deg);
  right: 12px;
  bottom: 78px;
  z-index: 3;
  width: 188px;
  min-width: 188px;
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 22px;
  transform: var(--base-transform);
}

.suite-card-note::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: rgba(111,47,61,.12);
}

.suite-ribbon {
  position: absolute;
  left: 20px;
  top: 118px;
  width: min(20vw, 220px);
  height: 58px;
  border-top: 16px solid rgba(154,113,74,.32);
  border-bottom: 16px solid rgba(154,113,74,.22);
  transform: rotate(-21deg);
  filter: drop-shadow(0 14px 18px rgba(82,57,43,.09));
}

.suite-rings {
  position: absolute;
  left: 48px;
  bottom: 118px;
  width: 122px;
  height: 82px;
}

.suite-rings i {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(154,113,74,.82);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,250,243,.72), 0 10px 20px rgba(82,57,43,.12);
}

.suite-rings i:first-child {
  left: 8px;
  top: 16px;
}

.suite-rings i:last-child {
  left: 48px;
  top: 4px;
}

.photo-seal {
  position: absolute;
  right: -18px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff4ee;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
  background: radial-gradient(circle at 34% 30%, #a65b67, var(--plum));
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.10), 0 16px 28px rgba(111,47,61,.20);
}

.photo-seal small {
  margin-top: 1px;
  color: rgba(255,244,238,.82);
  font-size: 13px;
}

.timeline::before {
  top: 30px;
  background: linear-gradient(90deg, transparent, rgba(111,47,61,.55), transparent);
}

.timeline article::before {
  display: none;
}

.timeline-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111,47,61,.28);
  border-radius: 50%;
  background: rgba(255,250,243,.92);
  color: var(--plum);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(82,57,43,.08);
}

.btn,
.gift-link,
.rsvp-form button,
.admin-actions button,
.admin-lock button,
.admin-row-delete {
  border-radius: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .invitation-suite {
    animation: suiteFloat 6.5s ease-in-out infinite;
  }

  .reveal-card {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 28px, 0) scale(.985);
    transition:
      opacity 1.28s ease var(--reveal-delay, 0ms),
      transform 1.28s cubic-bezier(.18,.72,.16,1) var(--reveal-delay, 0ms),
      filter 1.28s ease var(--reveal-delay, 0ms),
      box-shadow .24s ease,
      border-color .24s ease;
    will-change: opacity, transform, filter;
  }

  .reveal-card.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }

  .suite-card.reveal-card {
    transform: translate3d(0, 28px, 0) scale(.96) var(--base-transform);
  }

  .suite-card.reveal-card.is-visible {
    transform: var(--base-transform);
  }

  .photo-polaroid.reveal-card {
    transform: translate3d(0, 30px, 0) rotate(4deg) scale(.97);
  }

  .photo-polaroid.reveal-card.is-visible {
    transform: rotate(4deg);
  }

  .rsvp-polaroid.reveal-card {
    transform: translate3d(0, 30px, 0) rotate(3deg) scale(.97);
  }

  .rsvp-polaroid.reveal-card.is-visible {
    transform: rotate(3deg);
  }

  @keyframes suiteFloat {
    0%,
    100% {
      transform: translateY(0) rotateX(0deg);
    }
    50% {
      transform: translateY(-10px) rotateX(1.5deg);
    }
  }

}

.content-card,
.details-board article,
.timeline article,
.know-grid article,
.photo-polaroid,
.rsvp-polaroid {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.content-card:hover,
.details-board article:hover,
.know-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(111,47,61,.22);
  box-shadow: 0 30px 80px rgba(82,57,43,.11);
}

.timeline article:hover {
  transform: translateY(-4px);
}

.btn:hover,
.gift-link:hover,
.rsvp-form button:hover {
  transform: translateY(-2px);
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.90), transparent 23%),
    radial-gradient(circle at 84% 18%, rgba(207,217,207,.52), transparent 27%),
    linear-gradient(180deg, #edf2ef 0%, #fbf8f2 100%);
}

[hidden] {
  display: none !important;
}

.admin-page {
  min-height: 100vh;
  padding: 46px 24px 70px;
}

.admin-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.admin-heading h1 {
  margin: 0;
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 600;
  line-height: .95;
}

.admin-heading a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(111,47,61,.24);
  color: var(--plum);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.admin-lock,
.admin-panel,
.admin-stat {
  background: rgba(255,250,243,.82);
  border: 1px solid rgba(111,47,61,.14);
  box-shadow: 0 24px 70px rgba(82,57,43,.07);
}

.admin-lock {
  max-width: 560px;
  display: grid;
  gap: 20px;
  padding: 34px;
}

.admin-lock h2,
.admin-panel h2 {
  margin-bottom: 10px;
  font-size: 42px;
}

.admin-lock label {
  display: grid;
  gap: 8px;
}

.admin-lock span {
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.admin-lock input {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(111,47,61,.24);
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.admin-lock input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(111,47,61,.08);
}

.admin-lock button,
.admin-actions button {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--plum);
  background: var(--plum);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-lock-message {
  min-height: 22px;
  margin: 0;
  color: var(--plum);
  font-weight: 700;
}

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

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-actions .ghost-action {
  background: transparent;
  color: var(--plum);
}

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

.admin-stat {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.admin-stat strong {
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1;
}

.admin-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-panel {
  padding: 28px;
}

.alcohol-stats {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}

.alcohol-stats li {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(79,96,77,.16);
  background: rgba(233,238,238,.44);
}

.alcohol-stats strong {
  color: var(--plum);
}

.admin-empty {
  margin: 18px 0 0;
}

.admin-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.responses-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: rgba(255,255,255,.44);
}

.responses-table th,
.responses-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(111,47,61,.11);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.responses-table th {
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.answer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-pill.yes {
  background: rgba(79,96,77,.12);
  color: var(--sage-deep);
}

.answer-pill.no {
  background: rgba(111,47,61,.10);
  color: var(--plum);
}

.admin-row-delete {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(111,47,61,.24);
  background: transparent;
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 112px;
  }

  h2 {
    font-size: 58px;
  }

  .hero-left.invitation-suite {
    position: absolute;
    left: -118px;
    bottom: 4px;
    opacity: .24;
    transform: scale(.92);
    animation: none;
    pointer-events: none;
  }

  .hero-right {
    position: relative;
    right: auto;
    top: auto;
    min-height: auto;
    margin-top: 8px;
    opacity: 1;
  }

  .photo-polaroid {
    width: min(360px, 82vw);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .alcohol-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 52px 18px 58px;
  }

  .hero h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 44px;
  }

  .lead {
    font-size: 14px;
  }

  .hero-left.invitation-suite {
    display: none;
  }

  .hero-right {
    margin-top: 22px;
  }

  .photo-polaroid {
    min-width: 0;
    width: min(315px, 88vw);
    padding-bottom: 42px;
  }

  .seal {
    right: -12px;
    width: 64px;
    height: 64px;
    font-size: 23px;
  }

  .admin-page {
    padding: 30px 16px 48px;
  }

  .admin-heading {
    display: grid;
    align-items: start;
  }

  .admin-heading h1 {
    font-size: 46px;
  }

  .admin-lock,
  .admin-panel {
    padding: 22px;
  }

  .stats-grid,
  .alcohol-stats {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions button,
  .admin-heading a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero-center {
    padding-left: 0;
    padding-right: 0;
  }
}


/* Requested refinements */
body {
  background: linear-gradient(180deg, #efe3d4 0%, #fbf3e8 45%, #ead9c7 100%);
}

body::before,
.hero::after,
.content-card::after,
.gift-card::before,
.final-screen::before,
.footer-bouquet,
.house {
  display: none;
}

.paper-noise {
  opacity: .12;
}

.hero::before {
  background: linear-gradient(180deg, rgba(251,243,232,.72), rgba(250,239,225,.94));
}

.wedding-arc {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 116px;
  pointer-events: none;
}

.wedding-arc::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 8px;
  height: 92px;
  border-top: 1px solid rgba(111,47,61,.28);
  border-radius: 50% 50% 0 0;
}

.wedding-arc::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 72px;
  height: 72px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(154,113,74,.22);
  background: rgba(255,250,243,.32);
}

.wedding-arc span {
  position: absolute;
  top: 38px;
  width: 14px;
  height: 24px;
  border-radius: 50% 50% 48% 48%;
  background: rgba(255,250,243,.86);
  border: 1px solid rgba(111,47,61,.18);
  box-shadow: 0 8px 22px rgba(82,57,43,.07);
  transform: rotate(var(--petal-rotate, -18deg));
}

.wedding-arc span:nth-child(1) { left: 12%; --petal-rotate: -26deg; }
.wedding-arc span:nth-child(2) { left: 26%; --petal-rotate: 18deg; }
.wedding-arc span:nth-child(3) { left: 41%; --petal-rotate: -12deg; }
.wedding-arc span:nth-child(4) { right: 41%; --petal-rotate: 14deg; }
.wedding-arc span:nth-child(5) { right: 26%; --petal-rotate: -18deg; }
.wedding-arc span:nth-child(6) { right: 12%; --petal-rotate: 24deg; }

.suite-card-main strong {
  font-size: 43px;
}

.suite-card-main small {
  max-width: 190px;
  line-height: 1.45;
  letter-spacing: .08em;
}

.suite-card-note {
  width: 210px;
  min-width: 210px;
}

.details-board {
  grid-template-columns: repeat(2, 1fr);
}

.details-board article {
  min-height: 185px;
  padding: 34px 30px;
}

.details-board article:nth-child(2) {
  border-right: 0;
}

.details-board span {
  color: var(--muted);
}

.details-board a {
  color: var(--burgundy);
}

.dress-card {
  align-self: start;
  min-height: 0;
  padding-bottom: 42px;
}

.dress-card .palette {
  margin-top: 22px;
}

.final-screen {
  width: 100%;
  max-width: none;
  min-height: auto;
  margin: 0;
  padding: 112px 26px;
  background: linear-gradient(180deg, rgba(255,250,243,.78), rgba(239,232,223,.98));
}

.footer-card {
  width: min(720px, 100%);
  padding: 46px 42px;
}

@media (prefers-reduced-motion: no-preference) {
  .invitation-suite {
    animation-duration: 10s;
  }

  .wedding-arc span {
    animation: petalDrift 7.5s ease-in-out infinite;
  }

  .wedding-arc span:nth-child(even) {
    animation-delay: 1.4s;
  }

  .reveal-card {
    transition:
      opacity 1.28s ease var(--reveal-delay, 0ms),
      transform 1.28s cubic-bezier(.18,.72,.16,1) var(--reveal-delay, 0ms),
      filter 1.28s ease var(--reveal-delay, 0ms),
      box-shadow .34s ease,
      border-color .34s ease;
  }

  @keyframes petalDrift {
    0%,
    100% {
      transform: translateY(0) rotate(var(--petal-rotate, 0deg));
    }
    50% {
      transform: translateY(7px) rotate(calc(var(--petal-rotate, 0deg) + 4deg));
    }
  }
}

@media (max-width: 1120px) {
  .details-board {
    grid-template-columns: 1fr 1fr;
  }

  .hero-left.invitation-suite {
    opacity: .18;
  }
}

@media (max-width: 760px) {
  .wedding-arc {
    top: 8px;
    left: 3%;
    right: 3%;
    height: 76px;
  }

  .wedding-arc::before {
    height: 58px;
  }

  .wedding-arc::after,
  .wedding-arc span:nth-child(n+5) {
    display: none;
  }

  .wedding-arc span {
    top: 26px;
    width: 11px;
    height: 19px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 58px;
  }

  .hero-right {
    order: 1;
    width: 100%;
    margin: 0 0 24px;
  }

  .hero-center {
    order: 2;
    padding-top: 8px;
    padding-bottom: 0;
  }

  .photo-polaroid {
    transform: rotate(0);
  }

  .photo-polaroid.reveal-card,
  .photo-polaroid.reveal-card.is-visible {
    transform: rotate(0);
  }

  .hero-right .real-main-photo,
  .hero-right .real-main-photo img {
    min-height: 335px;
  }

  .details-board {
    grid-template-columns: 1fr;
  }

  .details-board article:nth-child(2) {
    border-bottom: 0;
  }

  .dress-card {
    padding-bottom: 30px;
  }

  .final-screen {
    padding: 82px 18px 90px;
  }
}


/* Stronger photo depth */
.photo-polaroid,
.rsvp-polaroid,
.small-photo {
  border-color: #fffaf4;
  box-shadow:
    0 46px 90px rgba(77, 52, 34, .26),
    0 18px 34px rgba(77, 52, 34, .18),
    0 3px 8px rgba(77, 52, 34, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.photo-polaroid {
  filter: drop-shadow(18px 22px 18px rgba(77, 52, 34, .14));
}

.rsvp-polaroid,
.small-photo {
  filter: drop-shadow(12px 18px 16px rgba(77, 52, 34, .13));
}

.photo-polaroid .photo,
.rsvp-polaroid .photo,
.small-photo.photo {
  box-shadow:
    inset 0 0 0 1px rgba(43, 37, 33, .08),
    inset 0 -34px 44px rgba(43, 37, 33, .10);
}


/* Final polish: seals, section transitions and invitation depth */
.hero {
  background:
    linear-gradient(180deg, rgba(239, 227, 212, .34) 0%, rgba(251, 243, 232, .70) 78%, rgba(247, 236, 224, .96) 100%);
}

.hero h1 span {
  display: inline-block;
  margin: 14px 0 12px;
  color: var(--gold);
  font-size: .34em;
  line-height: .7;
  transform: translateY(-2px);
}

.photo-seal {
  transform: rotate(10deg);
  transform-origin: 50% 50%;
}

.photo-seal small {
  margin: 0 1px;
  font-size: 17px;
  transform: translateY(-1px);
}

.invitation-suite {
  filter: drop-shadow(18px 24px 20px rgba(77, 52, 34, .16));
}

.suite-card-main,
.suite-card-note {
  box-shadow:
    0 46px 90px rgba(77, 52, 34, .22),
    0 18px 34px rgba(77, 52, 34, .14),
    0 3px 8px rgba(77, 52, 34, .10),
    inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.section {
  max-width: none;
  width: 100%;
  padding-left: max(26px, calc((100vw - 1220px) / 2 + 26px));
  padding-right: max(26px, calc((100vw - 1220px) / 2 + 26px));
}

.section-intro {
  background: linear-gradient(180deg, rgba(247, 236, 224, .96) 0%, rgba(255, 250, 244, .90) 52%, rgba(244, 232, 219, .90) 100%);
}

.schedule-section {
  background: linear-gradient(180deg, rgba(244, 232, 219, .90) 0%, rgba(250, 242, 231, .92) 46%, rgba(239, 225, 210, .90) 100%);
}

.cards-section {
  background: linear-gradient(180deg, rgba(239, 225, 210, .90) 0%, rgba(251, 243, 232, .92) 48%, rgba(242, 229, 215, .92) 100%);
}

.know-section {
  background: linear-gradient(180deg, rgba(242, 229, 215, .92) 0%, rgba(250, 242, 231, .90) 55%, rgba(235, 219, 203, .92) 100%);
}

.rsvp-section {
  background: linear-gradient(180deg, rgba(235, 219, 203, .92) 0%, rgba(250, 242, 231, .94) 58%, rgba(233, 214, 196, .96) 100%);
}

.final-screen {
  background: linear-gradient(180deg, rgba(233, 214, 196, .96) 0%, rgba(239, 224, 209, .98) 36%, rgba(225, 203, 184, 1) 100%);
}

.details-board .icon {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 34px;
}

@media (max-width: 760px) {
  .hero h1 span {
    margin: 10px 0 8px;
    font-size: .38em;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
