:root {
  --ink: #171310;
  --ivory: #f5f1e8;
  --paper: #ebe0cc;
  --wine: #7f2825;
  --wine-bright: #aa4038;
  --gold: #b9914e;
  --sage: #dce2d8;
  --mist: #e6e7e4;
  --white: #fffdf8;
  --line: rgba(23, 19, 16, 0.2);
  --page: min(1280px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--ivory);
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--wine-bright);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

.section-pad {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.text-action {
  min-height: 44px;
  border: 0;
  padding: 0 5px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.text-action.dark {
  color: var(--ink);
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1150ms cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 1150ms;
  will-change: clip-path;
}

.opening.is-closing {
  clip-path: inset(0 50% 0 50%);
  visibility: hidden;
}

.opening::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0;
  background: #d7b367;
  box-shadow: 0 0 28px rgba(215, 179, 103, 0.85);
  pointer-events: none;
}

.opening.is-closing::after {
  animation: openingLine 1100ms ease both;
}

.opening-photo,
.opening-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opening-photo {
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.04);
  animation: openingImage 10s ease-out both;
  transition: transform 1200ms cubic-bezier(0.16, 0.7, 0.2, 1), filter 850ms ease;
}

.opening.is-closing .opening-photo {
  animation: none;
  transform: scale(1.13);
  filter: blur(3px);
}

.opening-shade {
  background: rgba(10, 7, 5, 0.72);
}

.opening-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 40px));
  text-align: center;
  transition: opacity 360ms ease, transform 680ms cubic-bezier(0.16, 0.7, 0.2, 1);
}

.opening.is-closing .opening-content {
  opacity: 0;
  transform: translateY(-24px) scale(0.97);
}

.opening-logo {
  width: min(360px, 74vw);
  height: 82px;
  object-fit: contain;
  margin-bottom: 45px;
}

.wedding-mark {
  display: inline-grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: inherit;
}

.mark-initials {
  position: relative;
  display: flex;
  width: 92px;
  height: 62px;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
}

.mark-initials span {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.mark-initials i {
  position: relative;
  z-index: 2;
  margin: 8px -5px 0;
  color: #d8ad56;
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
}

.mark-initials b {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #af3d35;
  font-size: 11px;
  font-weight: 400;
  transform: translateX(-50%);
}

.mark-divider {
  display: block;
  width: 1px;
  height: 48px;
  opacity: 0.32;
  background: currentColor;
}

.mark-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}

.mark-copy > span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.mark-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: none;
}

.mark-copy i {
  color: #d8ad56;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.mark-copy small {
  color: #d8ad56;
  font-size: 9px;
  font-weight: 700;
}

.opening-mark {
  grid-template-columns: auto;
  gap: 0;
  margin: 0 auto 42px;
}

.opening-mark .mark-divider,
.opening-mark .mark-copy {
  display: none;
}

.opening-mark .mark-initials {
  width: 105px;
  height: 70px;
}

.opening-mark .mark-initials span {
  font-size: 66px;
}

.opening-mark .mark-initials i {
  font-size: 31px;
}

.opening-mark .mark-copy strong {
  font-size: 19px;
}

.opening-kicker,
.opening-date {
  margin-bottom: 22px;
  color: #dfbd7b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.opening-content h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
}

.opening-content h1 i {
  color: #d6a94e;
  font-weight: 400;
}

.opening-date {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
}

.opening-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.opening-start {
  display: inline-flex;
  width: min(290px, 82vw);
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(226, 193, 125, 0.72);
  border-radius: 0;
  padding: 7px 9px 7px 25px;
  color: var(--white);
  background: rgba(16, 11, 8, 0.44);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.opening-start i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #dfbd7b;
  font-size: 19px;
  font-style: normal;
  transition: transform 260ms ease, background-color 220ms ease;
}

.opening-start:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.opening-start:hover i {
  background: #d7a94e;
  transform: translateX(3px);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: var(--progress, 0%);
  height: 3px;
  background: var(--wine-bright);
  pointer-events: none;
}

.cursor-light {
  position: fixed;
  z-index: 250;
  top: var(--cursor-y, -100px);
  left: var(--cursor-x, -100px);
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 160ms ease, height 160ms ease;
}

.site-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 9px clamp(20px, 4vw, 70px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(23, 19, 16, 0.12);
  background: rgba(245, 241, 232, 0.96);
  backdrop-filter: blur(14px);
}

.site-brand picture {
  display: block;
  width: clamp(250px, 22vw, 320px);
  height: 58px;
}

.header-mark .mark-initials {
  width: 74px;
  height: 50px;
}

.header-mark .mark-initials span {
  font-size: 44px;
}

.header-mark .mark-initials i {
  font-size: 22px;
}

.header-mark .mark-divider {
  height: 40px;
}

.header-mark .mark-copy {
  gap: 4px;
}

.header-mark .mark-copy strong {
  font-size: 14px;
}

.header-mark .mark-copy i {
  font-size: 12px;
}

.header-mark .mark-copy small {
  font-size: 8px;
}

.site-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header.is-scrolled .site-brand img {
  filter: brightness(0.32) sepia(0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: #d2a84f;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-rsvp {
  padding: 12px 18px;
  border: 1px solid currentColor;
}

.site-nav .nav-rsvp::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  padding: 13px 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 200ms ease;
}

.music-control {
  position: fixed;
  z-index: 210;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(218, 184, 118, 0.58);
  border-radius: 50%;
  color: #e3c98f;
  background: rgba(23, 17, 13, 0.94);
  cursor: pointer;
}

.music-note {
  font-family: Georgia, serif;
  font-size: 18px;
}

.music-bars {
  display: flex;
  height: 16px;
  align-items: end;
  gap: 2px;
}

.music-bars i {
  display: block;
  width: 2px;
  height: 25%;
  background: currentColor;
}

.music-control.is-playing .music-bars i {
  animation: musicBar 650ms ease-in-out infinite alternate;
}

.music-control.is-playing .music-bars i:nth-child(2) { animation-delay: 120ms; }
.music-control.is-playing .music-bars i:nth-child(3) { animation-delay: 240ms; }
.music-control.is-playing .music-bars i:nth-child(4) { animation-delay: 360ms; }

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  top: -8%;
  bottom: -8%;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(0.16, 0.7, 0.2, 1);
}

.hero-overlay {
  background: rgba(9, 7, 5, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1160px, calc(100% - 64px));
  min-height: 92svh;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 70px;
}

.hero-eyebrow {
  color: #e2c17d;
}

.hero-content h1 {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 10vw, 154px);
  font-weight: 400;
  line-height: 0.77;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
}

.hero-content h1 i {
  margin: 4px 0 0 clamp(70px, 14vw, 210px);
  color: #dbb15c;
  font-size: 0.47em;
  font-weight: 400;
}

.hero-content h1 span:last-child {
  margin-left: clamp(22px, 8vw, 120px);
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.5;
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 105px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.countdown-band {
  display: grid;
  min-height: 148px;
  grid-template-columns: minmax(180px, 0.7fr) minmax(460px, 1.4fr) minmax(190px, 0.7fr);
  align-items: center;
  gap: 36px;
  padding: 26px max(32px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--wine);
}

.countdown-band > p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

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

.countdown div {
  padding: 8px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
}

.countdown span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-action {
  justify-self: end;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.editorial-intro {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(95px, 12vw, 170px);
}

.editorial-intro h2 {
  max-width: 1120px;
  margin-bottom: 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.98;
}

.intro-bottom {
  display: grid;
  grid-template-columns: minmax(0, 550px) 1fr;
  gap: 80px;
  align-items: end;
}

.intro-bottom p {
  margin: 0;
  color: #594d45;
  font-size: 18px;
  line-height: 1.75;
}

.signature {
  justify-self: end;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: clamp(54px, 8vw, 112px);
  font-style: italic;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-bottom: clamp(100px, 13vw, 190px);
}

.story-images {
  position: relative;
  min-height: 780px;
}

.story-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #c9ad82;
  transform: translateY(var(--parallax-y, 0));
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-main {
  top: 0;
  left: 0;
  width: 72%;
  height: 720px;
}

.story-image-main img {
  transform: scale(2.45);
  transform-origin: 88% 26%;
}

.story-image-small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 390px;
  border: 12px solid var(--ivory);
}

.story-image-small img {
  transform: scale(2.8);
  transform-origin: 88% 10%;
}

.story-seal {
  position: absolute;
  z-index: 3;
  top: 120px;
  right: 2%;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--wine);
  background: var(--ivory);
  font-family: Georgia, serif;
  font-size: 31px;
  font-style: italic;
}

.story-seal::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 145, 78, 0.7);
  border-radius: 50%;
}

.story-seal small {
  position: absolute;
  bottom: 23px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-style: normal;
}

.story-copy h2,
.section-heading h2,
.details-heading h2,
.faq-heading h2 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.02;
}

.story-copy > p:not(.eyebrow) {
  color: #5b5048;
  font-size: 17px;
  line-height: 1.75;
}

.story-copy blockquote {
  margin: 45px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
}

.life-story {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #17110d;
}

.life-story-media,
.life-story-shade {
  position: absolute;
  inset: 0;
}

.life-story-media {
  top: -4%;
  bottom: -4%;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.life-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.life-story-shade {
  background: rgba(12, 9, 7, 0.78);
}

.life-story-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(110px, 12vw, 180px);
}

.life-story-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: clamp(40px, 7vw, 105px);
  align-items: start;
  margin-bottom: clamp(85px, 10vw, 145px);
}

.life-story .eyebrow {
  color: #d9b971;
}

.life-story-heading h2 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.8vw, 116px);
  font-weight: 400;
  line-height: 0.92;
}

.biography-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.biography {
  min-height: 620px;
  padding: clamp(45px, 6vw, 82px);
}

.biography:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.biography > span,
.together-title > span {
  display: block;
  margin-bottom: clamp(70px, 9vw, 130px);
  color: #d9b971;
  font-size: 11px;
  font-weight: 700;
}

.biography h3,
.together-title h3 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(47px, 5vw, 76px);
  font-weight: 400;
}

.biography p,
.together-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.82;
}

.biography p:last-child,
.together-copy p:last-child {
  margin-bottom: 0;
}

.together-story {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(80px, 10vw, 145px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.together-title > span {
  margin-bottom: 80px;
}

.together-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(35px, 5vw, 75px);
  align-content: end;
}

.story-thanks {
  max-width: 1050px;
  margin: 0;
  padding: clamp(90px, 11vw, 155px) 0 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.12;
}

.story-thanks span {
  display: block;
  margin-top: 42px;
  color: #d9b971;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.gallery-section {
  overflow: hidden;
  padding: 105px 0 80px;
  color: var(--white);
  background: var(--ink);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.5fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
}

.gallery-heading .eyebrow {
  color: #d7b56d;
}

.gallery-heading > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.7;
}

.gallery-viewport {
  overflow-x: auto;
  padding: 18px max(32px, calc((100vw - 1280px) / 2)) 40px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
}

.gallery-item {
  position: relative;
  flex: 0 0 420px;
  height: 560px;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: var(--white);
  background: #2b221d;
  scroll-snap-align: center;
  cursor: zoom-in;
}

.gallery-item-large {
  flex-basis: 660px;
  height: 530px;
}

.gallery-item-square {
  flex-basis: 520px;
  height: 520px;
}

.gallery-item-wide {
  flex-basis: 760px;
  height: 500px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  filter: saturate(0.72) contrast(1.05);
  transition: filter 350ms ease, transform 500ms ease;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1);
}

.gallery-item-large:hover img {
  transform: scale(1.035);
}

.gallery-focus-car img {
  object-position: 50% 50%;
}

.gallery-focus-couple img {
  object-position: 50% 20%;
}

.gallery-focus-stadium img {
  object-position: 50% 50%;
}

.gallery-focus-mirror img {
  object-position: 50% 34%;
}

.gallery-focus-portrait img {
  object-position: 50% 24%;
}

.gallery-item.crop-two img {
  transform: scale(2.45);
  transform-origin: 88% 26%;
}

.gallery-item.crop-three img {
  transform: scale(2.85);
  transform-origin: 88% 10%;
}

.gallery-item.crop-four img {
  transform: scale(2.75);
  transform-origin: 91% 35%;
}

.gallery-item span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(18, 13, 10, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}

.gallery-progress {
  width: min(520px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-progress i {
  display: block;
  width: 24%;
  height: 100%;
  background: var(--gold);
  transform: translateX(var(--gallery-progress, 0%));
}

.gallery-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.gallery-controls button:hover {
  color: var(--ink);
  background: var(--white);
}

.love-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(23, 19, 16, 0.16);
  border-bottom: 1px solid rgba(23, 19, 16, 0.16);
  color: var(--ink);
  background: var(--paper);
}

.love-ticker > div {
  display: flex;
  width: max-content;
  min-height: 94px;
  align-items: center;
  animation: loveTicker 24s linear infinite;
}

.love-ticker span {
  padding: 0 clamp(28px, 4vw, 68px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 38px);
  font-style: italic;
  white-space: nowrap;
}

.love-ticker i {
  color: var(--wine);
  font-size: 13px;
  font-style: normal;
}

.date-statement {
  padding: clamp(85px, 11vw, 150px) 32px;
  color: var(--white);
  background: var(--wine);
}

.date-statement-inner {
  display: flex;
  width: min(1050px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 60px);
}

.date-statement-inner > span,
.date-statement-inner > p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(17px, 2vw, 26px);
  font-style: italic;
}

.date-statement-inner > strong {
  font-family: Georgia, serif;
  font-size: clamp(130px, 22vw, 300px);
  font-weight: 400;
  line-height: 0.72;
}

.date-statement-inner > div {
  display: grid;
}

.date-statement-inner i {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
}

.date-statement-inner b {
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 400;
}

.schedule {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.section-heading {
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: 0.5fr 1.4fr;
  gap: 60px;
}

.section-heading h2 {
  margin: 0;
}

.schedule-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.schedule-list li {
  display: grid;
  min-height: 180px;
  grid-template-columns: minmax(160px, 0.5fr) 1.5fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.schedule-list li:hover {
  color: var(--white);
  background: var(--wine);
  transform: translateX(8px);
}

.schedule-list li:hover time,
.schedule-list li:hover span,
.schedule-list li:hover p {
  color: var(--white);
}

.schedule-list time {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
}

.schedule-list li > div {
  display: grid;
  grid-template-columns: 50px minmax(180px, 0.7fr) 1fr;
  align-items: center;
  gap: 28px;
}

.schedule-list li span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.schedule-list h3,
.schedule-list p {
  margin: 0;
}

.schedule-list h3 {
  font-family: Georgia, serif;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
}

.schedule-list p {
  color: #655950;
  line-height: 1.6;
}

.venue {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 820px;
  color: var(--white);
  background: var(--ink);
}

.venue-media {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  margin: 0;
  transform: translateY(var(--parallax-y, 0));
}

.venue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.venue-copy {
  align-self: center;
  max-width: 660px;
  padding: 80px clamp(45px, 7vw, 110px);
}

.venue-copy .eyebrow {
  color: #d7b56d;
}

.venue-copy h2 {
  margin-bottom: 35px;
  font-family: Georgia, serif;
  font-size: clamp(45px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.03;
}

.venue-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.venue-copy .venue-address {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
}

.venue-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.venue-actions .button-dark {
  color: var(--ink);
  background: var(--white);
}

.venue-actions .text-action.dark {
  color: var(--white);
}

.details {
  padding-top: clamp(100px, 12vw, 165px);
  padding-bottom: clamp(100px, 12vw, 165px);
}

.details-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
}

.details-heading h2 {
  max-width: 850px;
  margin: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details-grid article {
  min-height: 310px;
  padding: 38px;
  border-right: 1px solid var(--line);
  transition: background-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.details-grid article:hover {
  z-index: 2;
  background: var(--sage);
  box-shadow: 0 24px 55px rgba(23, 19, 16, 0.12);
  transform: translateY(-8px);
}

.details-grid article:last-child {
  border-right: 0;
}

.details-grid span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
}

.details-grid h3 {
  margin: 70px 0 18px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.details-grid p {
  margin: 0;
  color: #62564e;
  line-height: 1.7;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 120px);
  padding-top: clamp(95px, 11vw, 150px);
  padding-bottom: clamp(95px, 11vw, 150px);
  background: var(--mist);
  box-shadow: 0 0 0 100vmax var(--mist);
  clip-path: inset(0 -100vmax);
}

.faq-heading h2 {
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-family: Georgia, serif;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 25px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -5px 0 30px;
  color: #635850;
  line-height: 1.7;
}

.rsvp {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(500px, 1.15fr);
  min-height: 900px;
  color: var(--white);
  background: var(--wine);
}

.rsvp-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px);
  border-right: 1px solid rgba(255, 255, 255, 0.23);
}

.rsvp-intro .eyebrow {
  color: #ead3a5;
}

.rsvp-intro h2 {
  max-width: 560px;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.94;
}

.rsvp-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.rsvp-monogram {
  position: absolute;
  right: -25px;
  bottom: -35px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: clamp(160px, 22vw, 340px);
  line-height: 1;
}

.rsvp-monogram i {
  font-size: 0.55em;
}

.rsvp-form {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(55px, 8vw, 120px);
  background: var(--ivory);
}

.rsvp-form label {
  display: grid;
  gap: 9px;
  color: #5d5148;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 18px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a79b91;
  border-radius: 0;
  padding: 12px 2px;
  color: var(--ink);
  background: transparent;
}

.rsvp-form textarea {
  min-height: 105px;
  resize: vertical;
}

.rsvp-form .button {
  justify-self: start;
  margin-top: 8px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--wine);
  font-size: 13px;
}

.site-footer {
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px clamp(24px, 5vw, 75px);
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: min(310px, 35vw);
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.footer-mark {
  justify-self: start;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer > a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.confirmation,
.lightbox {
  color: var(--white);
  background: var(--ink);
}

.confirmation::backdrop,
.lightbox::backdrop {
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(8px);
}

.confirmation {
  width: min(560px, calc(100% - 32px));
  border: 1px solid rgba(218, 184, 118, 0.55);
  border-radius: 0;
  padding: 65px 52px;
  text-align: center;
}

.confirmation > button,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.confirmation span {
  color: var(--gold);
  font-size: 11px;
}

.confirmation h2 {
  margin: 22px 0 18px;
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
}

.confirmation p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.lightbox {
  width: min(1280px, calc(100% - 32px));
  max-width: none;
  height: min(900px, calc(100% - 32px));
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(218, 184, 118, 0.45);
  border-radius: 0;
  padding: 30px 86px;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 12px;
  color: #d5b875;
  font-family: Georgia, serif;
  font-style: italic;
}

.lightbox-prev,
.lightbox-next {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.celebration-piece {
  position: fixed;
  z-index: 1400;
  top: 48%;
  left: 50%;
  width: 7px;
  height: 13px;
  background: var(--piece-color);
  pointer-events: none;
  animation: celebrate 1700ms cubic-bezier(0.16, 0.75, 0.2, 1) var(--delay) both;
}

@keyframes openingImage {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}

@keyframes openingLine {
  0% { opacity: 0; transform: scaleY(0); }
  28% { opacity: 1; transform: scaleY(1); }
  72% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); }
}

@keyframes musicBar {
  from { height: 25%; }
  to { height: 100%; }
}

@keyframes celebrate {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--x), 48vh) rotate(var(--r)); }
}

@keyframes loveTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 42px, 900px);
  }

  .site-brand picture {
    width: 255px;
  }

  .site-nav {
    gap: 18px;
  }

  .countdown-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 34px;
  }

  .countdown-band > p,
  .calendar-action {
    justify-self: center;
  }

  .story-feature,
  .venue,
  .rsvp {
    grid-template-columns: 1fr;
  }

  .story-images {
    min-height: 720px;
  }

  .story-copy {
    max-width: 680px;
  }

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

  .rsvp-intro {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .site-brand picture {
    width: 230px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    background: var(--ivory);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-rsvp {
    margin-top: 12px;
    border: 1px solid var(--ink);
    text-align: center;
  }

  .hero-content {
    width: calc(100% - 42px);
  }

  .hero-content h1 {
    font-size: clamp(66px, 15vw, 116px);
  }

  .intro-bottom,
  .gallery-heading,
  .section-heading,
  .details-heading,
  .faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .life-story-heading,
  .together-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .biography-grid,
  .together-copy {
    grid-template-columns: 1fr;
  }

  .biography {
    min-height: auto;
    padding: 60px 0;
  }

  .biography:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .biography > span,
  .together-title > span {
    margin-bottom: 50px;
  }

  .together-copy {
    gap: 25px;
  }

  .signature {
    justify-self: start;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-square,
  .gallery-item-wide {
    flex-basis: min(78vw, 520px);
    height: min(102vw, 590px);
  }

  .gallery-item-wide {
    flex-basis: min(88vw, 700px);
    height: min(58vw, 460px);
  }

  .schedule-list li {
    grid-template-columns: 130px 1fr;
  }

  .schedule-list li > div {
    grid-template-columns: 35px 1fr;
  }

  .schedule-list li p {
    grid-column: 2;
    margin-top: 7px;
  }

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

  .details-grid article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .details-grid article:last-child {
    border-bottom: 0;
  }

  .details-grid h3 {
    margin-top: 45px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 34px);
  }

  .cursor-light {
    display: none;
  }

  .site-brand picture {
    width: 72px;
    height: 48px;
  }

  .header-mark {
    grid-template-columns: 74px;
    gap: 0;
  }

  .header-mark .mark-divider,
  .header-mark .mark-copy {
    display: none;
  }

  .opening-mark {
    margin-bottom: 30px;
  }

  .opening-logo {
    height: 65px;
    margin-bottom: 32px;
  }

  .opening-content h1 {
    display: grid;
    font-size: clamp(49px, 14vw, 72px);
  }

  .opening-content h1 i {
    margin: 2px 0;
  }

  .opening-actions {
    flex-direction: column;
    gap: 8px;
  }

  .hero,
  .hero-content {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: clamp(58px, 17vw, 88px);
  }

  .hero-content h1 i {
    margin-left: 45px;
  }

  .hero-content h1 span:last-child {
    margin-left: 12px;
  }

  .hero-side-note {
    display: none;
  }

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

  .countdown div,
  .countdown div:last-child {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 0;
  }

  .countdown div:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .editorial-intro h2 {
    font-size: 47px;
  }

  .life-story-shade {
    background: rgba(12, 9, 7, 0.84);
  }

  .life-story-media img {
    object-position: 55% 44%;
  }

  .life-story-heading h2 {
    font-size: 52px;
  }

  .biography h3,
  .together-title h3 {
    font-size: 48px;
  }

  .biography p,
  .together-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .story-thanks {
    font-size: 40px;
  }

  .story-images {
    min-height: 540px;
  }

  .story-image-main {
    width: 82%;
    height: 490px;
  }

  .story-image-small {
    width: 55%;
    height: 250px;
    border-width: 8px;
  }

  .story-seal {
    top: 65px;
    width: 92px;
    height: 92px;
    font-size: 24px;
  }

  .story-seal small {
    bottom: 15px;
  }

  .story-copy h2,
  .section-heading h2,
  .details-heading h2,
  .faq-heading h2 {
    font-size: 43px;
  }

  .gallery-section {
    padding-top: 80px;
  }

  .gallery-heading h2 {
    font-size: 58px;
  }

  .gallery-viewport {
    padding-inline: 17px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-square,
  .gallery-item-wide {
    flex-basis: 82vw;
    height: 112vw;
  }

  .gallery-item-wide {
    flex-basis: 90vw;
    height: 59vw;
  }

  .date-statement-inner {
    flex-wrap: wrap;
  }

  .date-statement-inner > strong {
    font-size: 145px;
  }

  .date-statement-inner > p {
    width: 100%;
    text-align: center;
  }

  .schedule-list li {
    min-height: 175px;
    grid-template-columns: 105px 1fr;
  }

  .schedule-list time {
    font-size: 37px;
  }

  .schedule-list li > div {
    display: block;
  }

  .schedule-list li span {
    display: block;
    margin-bottom: 8px;
  }

  .venue-media {
    min-height: 610px;
  }

  .venue-copy,
  .rsvp-intro,
  .rsvp-form {
    padding: 70px 22px;
  }

  .venue-copy h2,
  .rsvp-intro h2 {
    font-size: 52px;
  }

  .venue-actions,
  .form-row {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .rsvp {
    grid-template-columns: 1fr;
  }

  .rsvp-intro {
    min-height: 540px;
  }

  .site-footer {
    min-height: 130px;
    padding-inline: 18px;
  }

  .site-footer img {
    width: 190px;
    height: 55px;
  }

  .footer-mark {
    grid-template-columns: 74px;
    gap: 0;
  }

  .footer-mark .mark-divider,
  .footer-mark .mark-copy {
    display: none;
  }

  .music-control {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .lightbox {
    width: 100%;
    height: 100%;
    padding: 62px 8px 18px;
    border: 0;
  }

  .lightbox[open] {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
  }
}

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

  .opening {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
