:root {
  --berry: #6d2143;
  --berry-dark: #491329;
  --rose: #d96b7c;
  --ivory: #fbf7ef;
  --paper: #fffdf9;
  --ink: #2b2026;
  --muted: #75666d;
  --line: #e6d9d4;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: white;
  translate: 0 -200%;
}
.skip-link:focus {
  translate: 0;
}
.wedding-nav,
.wedding-hero,
.wedding-flow,
.wedding-moments,
.experience,
.trust,
.wedding-status,
.wedding-footer {
  width: min(100% - 2.5rem, 1216px);
  margin-inline: auto;
}
.wedding-nav {
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.vow-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}
.vow-wordmark > span {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--berry);
  color: white;
}
.wedding-nav nav {
  display: flex;
  gap: 1.6rem;
}
.wedding-nav nav a,
.labs-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.wedding-nav nav a:hover,
.labs-link:hover {
  color: var(--berry);
}
.wedding-hero {
  min-height: 44rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding: 2rem 0 6rem;
}
.wedding-badge {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.42rem 0.75rem;
  border: 1px solid #ead7df;
  border-radius: 999px;
  background: rgb(255 255 255 / 55%);
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.wedding-copy h1 {
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
.wedding-copy h1 em {
  display: block;
  color: var(--berry);
  font-weight: 500;
}
.wedding-copy > p:not(.wedding-badge) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.wedding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.vow-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}
.vow-button:hover {
  transform: translateY(-2px);
}
.vow-button.primary {
  background: var(--berry);
  color: white;
}
.vow-button.quiet {
  color: var(--berry);
}
.wedding-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.7rem;
  list-style: none;
}
.wedding-copy li b {
  margin-right: 0.3rem;
  color: #438761;
}
.wedding-demo {
  min-height: 39rem;
  position: relative;
  isolation: isolate;
}
.wedding-demo::before {
  width: 82%;
  height: 84%;
  content: "";
  position: absolute;
  top: 3.5rem;
  right: -2.8rem;
  z-index: -1;
  border-radius: 45% 55% 54% 46%;
  background: #ead4dc;
  rotate: 8deg;
}
.hero-photo {
  height: 35rem;
  position: absolute;
  inset: 1.1rem 0 auto 2.5rem;
  margin: 0;
  overflow: hidden;
  border-radius: 11rem 11rem 1.5rem 1.5rem;
  background: #d8c5bd;
  box-shadow: 0 32px 75px rgb(62 27 43 / 22%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}
.mission-card {
  width: min(18rem, 72%);
  position: absolute;
  bottom: -0.7rem;
  left: -1.1rem;
  z-index: 3;
  padding: 1.15rem;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 1.1rem;
  background: rgb(255 253 249 / 91%);
  box-shadow: 0 20px 55px rgb(64 25 42 / 20%);
  backdrop-filter: blur(14px);
}
.mission-card > div,
.mission-card > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mission-card > div span,
.mission-card > div strong {
  color: var(--berry);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}
.mission-card h2 {
  margin: 1rem 0 1.2rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
}
.mission-card > p {
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
}
.float-score {
  position: absolute;
  right: -1.2rem;
  bottom: 5.8rem;
  z-index: 3;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 0.8rem;
  background: rgb(255 253 249 / 90%);
  box-shadow: 0 17px 45px rgb(64 25 42 / 16%);
  backdrop-filter: blur(10px);
  rotate: 4deg;
}
.float-score b,
.float-score span {
  display: block;
}
.float-score b {
  color: var(--berry);
  font-size: 1.1rem;
}
.float-score span {
  color: var(--muted);
  font-size: 0.55rem;
}
.wedding-flow {
  padding: 7rem 0;
}
.wedding-heading {
  text-align: center;
}
.wedding-heading > p,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.wedding-heading h2,
.experience-copy h2,
.trust h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.flow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.flow-cards article {
  min-height: 18rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgb(255 255 255 / 42%);
}
.flow-cards span {
  color: #ac9da3;
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
}
.flow-cards h3 {
  margin: 4rem 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}
.flow-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.wedding-moments {
  padding: 7rem 0;
}
.moments-copy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 3rem;
}
.moments-copy h2 {
  max-width: 49rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.moments-copy > p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.moment-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.moment-card {
  min-width: 0;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #d9cec9;
}
.moment-wide {
  grid-column: span 7;
  aspect-ratio: 7 / 5;
}
.moment-detail {
  grid-column: span 5;
  aspect-ratio: 1;
}
.moment-room {
  grid-column: 1 / -1;
  aspect-ratio: 2.25 / 1;
}
.moment-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgb(23 14 18 / 69%));
  pointer-events: none;
}
.moment-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.moment-card:hover img {
  transform: scale(1.015);
}
.moment-detail img {
  object-position: 43% center;
}
.moment-card figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  left: 1.4rem;
  z-index: 1;
  color: white;
}
.moment-card figcaption span,
.moment-card figcaption b {
  display: block;
}
.moment-card figcaption span {
  margin-bottom: 0.35rem;
  color: #f1c6d3;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.moment-card figcaption b {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  font-weight: 500;
}
.experience {
  padding: 7rem 0;
}
.experience-copy {
  max-width: 48rem;
}
.experience-copy > p:last-child {
  max-width: 40rem;
  color: var(--muted);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.experience-grid > article {
  min-height: 19rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--paper);
}
.experience-grid > article > span {
  color: var(--berry);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.experience-grid h3 {
  max-width: 32rem;
  margin: 2.5rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}
.experience-grid p {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.feature-large {
  grid-column: 1/-1;
  min-height: 31rem !important;
  background: var(--berry-dark) !important;
  color: white;
}
.feature-large > span {
  color: #ffc4d3 !important;
}
.feature-large > p {
  color: #d4b5c2;
}
.screen-mock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: 1.2rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 7%);
}
.screen-qr {
  width: 4.5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
  background: white;
  color: var(--berry-dark);
  font-size: 2.2rem;
}
.screen-mock small,
.screen-mock b {
  display: block;
}
.screen-mock small {
  color: #d59aaa;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
}
.screen-mock b {
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.screen-mock > strong {
  font-family: var(--serif);
  font-size: 2rem;
}
.trust {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  padding: 8rem 0;
}
.trust-list {
  border-top: 1px solid var(--line);
}
.trust-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-list article > span {
  color: #a29299;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}
.trust-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.trust-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}
.wedding-status {
  margin-bottom: 2rem;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: 1.5rem;
  background: var(--berry);
  color: white;
  text-align: center;
}
.wedding-status > p:first-child {
  color: #ffc7d7;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wedding-status h2 {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.wedding-status > p:not(:first-child) {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  color: #e6cbd5;
}
.vow-button.light {
  background: white;
  color: var(--berry);
}
.wedding-footer {
  min-height: 8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
}
.wedding-footer > p:not(.photo-credits) {
  text-align: center;
}
.footer-studio {
  text-decoration: none;
}
.photo-credits {
  grid-column: 1 / -1;
  margin: -1rem 0 1.5rem;
  color: #93868c;
  font-size: 0.6rem;
  text-align: center;
}
.photo-credits a {
  text-underline-offset: 0.15em;
}
@media (max-width: 850px) {
  .wedding-nav nav {
    display: none;
  }
  .wedding-hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .wedding-demo {
    min-height: 39rem;
  }
  .flow-cards {
    grid-template-columns: 1fr;
  }
  .flow-cards article {
    min-height: 15rem;
  }
  .moments-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }
  .moments-copy > p {
    max-width: 38rem;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-column: auto;
  }
  .trust {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wedding-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 2rem 0;
  }
  .wedding-footer > p:not(.photo-credits),
  .photo-credits {
    text-align: left;
  }
  .photo-credits {
    grid-column: auto;
    margin: 0;
  }
}
@media (max-width: 540px) {
  .wedding-nav,
  .wedding-hero,
  .wedding-flow,
  .wedding-moments,
  .experience,
  .trust,
  .wedding-status,
  .wedding-footer {
    width: min(100% - 1.5rem, 1216px);
  }
  .labs-link {
    font-size: 0;
  }
  .labs-link span {
    font-size: 1rem;
  }
  .wedding-copy h1 {
    font-size: 3.7rem;
  }
  .wedding-demo {
    min-height: 32rem;
    margin: 0 0 1rem;
  }
  .wedding-demo::before {
    right: -1rem;
  }
  .hero-photo {
    height: 29rem;
    inset: 0.7rem 0 auto 0.8rem;
    border-radius: 8rem 8rem 1.25rem 1.25rem;
  }
  .mission-card {
    width: 15.7rem;
    bottom: -0.2rem;
    left: 0;
  }
  .mission-card h2 {
    font-size: 1.25rem;
  }
  .float-score {
    right: 0.4rem;
  }
  .moment-gallery {
    grid-template-columns: 1fr;
  }
  .moment-wide,
  .moment-detail,
  .moment-room {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
  .moment-detail {
    aspect-ratio: 1;
  }
  .screen-mock {
    grid-template-columns: auto 1fr;
  }
  .screen-mock > strong {
    grid-column: 1/-1;
  }
  .wedding-status h2 {
    font-size: 3.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
