@font-face {
  font-family: "Lovers in New York";
  src: url("assets/fonts/lovers-in-new-york.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "La Belle Aurore";
  src: url("assets/fonts/la-belle-aurore.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular";
  src: url("assets/fonts/circular-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular";
  src: url("assets/fonts/circular-medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-page: #f8ddce;
  --color-ink: #721b30;
  --color-sage: #87966f;
  --color-olive: #60572d;
  --color-coral: #eb4d6c;
  --color-orange: #fb7925;
  --color-peach-glow: #fbc19c;
  --color-white: #ffffff;
  --max-canvas: 1440px;
  --max-frame: 1345px;
  --space-title-to-intro: 76px;
  --space-intro-to-content: 108px;
  --space-content-to-section: 140px;
  --font-display: "Lovers in New York", "La Belle Aurore", cursive;
  --font-script: "La Belle Aurore", "Lovers in New York", cursive;
  --font-body: "Circular", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-page);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  background: var(--color-page);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  width: min(100%, var(--max-canvas));
  margin: 0 auto;
  color: var(--color-ink);
  overflow-x: clip;
  overflow-y: visible;
}

.site-header--home {
  height: 496px;
}

.site-header--home::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 0;
  width: min(960px, calc(100% - 64px));
  height: 72px;
  transform: translateX(-50%);
  background-image: url("assets/images/home-ornament-garland.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.site-header--compact {
  height: 333px;
}

.site-header--compact::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 0;
  width: min(720px, calc(100% - 84px));
  height: 54px;
  transform: translateX(-50%);
  background-image: url("assets/images/home-ornament-garland.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.header-art {
  position: absolute;
  height: auto;
  user-select: none;
}

.header-art--villa {
  top: 57px;
  left: 13%;
  width: 381px;
}

.header-art--couple {
  top: 40px;
  right: 11.3%;
  width: 451px;
}

.couple-mark {
  position: absolute;
  left: calc(50% - 19.5px);
  z-index: 1;
  display: grid;
  transform: translateX(-50%);
  justify-items: center;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.31;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.couple-mark span:last-child {
  transform: translateX(0.28em);
}

.couple-mark--home {
  top: 93px;
  font-size: 3.87rem;
}

.couple-mark--home::before,
.couple-mark--home::after {
  content: "";
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: -1;
  width: 122px;
  height: 40px;
  background-image: url("assets/images/home-ornament-name-sprig-curly.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.96;
  pointer-events: none;
}

.couple-mark--home::before {
  transform: translate(-132%, -22%) rotate(15deg);
}

.couple-mark--home::after {
  transform: translate(32%, -22%) scaleX(-1) rotate(15deg);
}

.couple-mark--compact {
  top: 74px;
  font-size: 2.08rem;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  width: min(1083px, calc(100% - 110px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header--home .site-nav {
  top: 413px;
}

.site-header--compact .site-nav {
  top: 249px;
  z-index: 1;
}

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

.site-nav [aria-current="page"]::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: calc(100% + 7px);
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='8' viewBox='0 0 44 8' fill='none'%3E%3Cpath d='M1 4C4.5 1 7.5 1 11 4C14.5 7 17.5 7 21 4C24.5 1 27.5 1 31 4C34.5 7 37.5 7 41 4' stroke='%23EB4D6C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 44px 8px;
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.62;
}

.site-nav a:focus-visible,
.mobile-nav a:focus-visible,
.mobile-nav summary:focus-visible,
.couple-mark:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.mobile-nav {
  display: none;
}

.home-landing {
  position: relative;
  width: min(100%, var(--max-canvas));
  margin: 0 auto;
}

.home-landing::before,
.home-landing::after {
  content: "";
  position: absolute;
  top: 282px;
  z-index: 2;
  width: 188px;
  height: 586px;
  background-image: url("assets/images/home-ornament-side-spray.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
  pointer-events: none;
}

.home-landing::before {
  left: max(4px, calc(50% - 732px));
  transform: rotate(-4deg);
}

.home-landing::after {
  right: max(4px, calc(50% - 732px));
  transform: scaleX(-1) rotate(-4deg);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(var(--max-frame), calc(100% - 95px));
  aspect-ratio: 1345 / 897;
  margin: 0 auto;
  overflow: visible;
  border: 6px solid var(--color-white);
  border-radius: 1px;
  background: #d7d4d0;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -19px;
  z-index: 2;
  background-image: url("assets/images/home-photo-frame.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero-frame picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
}

.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
}

.home-intro {
  position: relative;
  width: min(1265px, calc(100% - 80px));
  margin: 59px auto 0;
  text-align: center;
}

.home-intro::after {
  content: "";
  display: block;
  width: min(760px, 84vw);
  height: 10px;
  margin: 42px auto 0;
  background-image: radial-gradient(circle, rgba(235, 77, 108, 0.62) 38%, transparent 42%);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 22px 10px;
}

.script-line {
  position: relative;
  margin: 0;
  font-family: var(--font-script);
  font-size: 2.93rem;
  line-height: 1.31;
  text-wrap: balance;
}

.script-line::before,
.script-line::after {
  content: "";
  position: absolute;
  top: calc(50% - 22px);
  width: 112px;
  height: 34px;
  background-image: url("assets/images/home-ornament-name-sprig-curly.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.script-line::before {
  left: 92px;
}

.script-line::after {
  right: 92px;
  transform: scaleX(-1);
}

.home-intro h1 {
  position: relative;
  display: inline-block;
  margin: 60px 0 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.31;
  text-align: center;
}

.home-intro h1::before,
.home-intro h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 102px;
  height: 34px;
  background-image: url("assets/images/home-ornament-name-sprig-curly.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.home-intro h1::before {
  left: -105px;
  transform: translateY(-44%) rotate(-84deg);
}

.home-intro h1::after {
  right: -105px;
  transform: translateY(-44%) scaleX(-1) rotate(-84deg);
}

.home-schedule {
  position: relative;
  margin-top: 108px;
}

.home-schedule .page-title {
  position: relative;
  width: max-content;
  max-width: calc(100% - 34px);
  margin: 0 auto;
}

.home-schedule .page-title::after {
  content: "";
  display: block;
  width: 186px;
  height: 42px;
  margin: 10px auto 0;
  background-image: url("assets/images/home-ornament-sprig.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-schedule .schedule-list {
  position: relative;
  margin-top: 78px;
}

.home-body .schedule-event {
  position: relative;
}

.home-body .schedule-event + .schedule-event::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  width: min(1080px, 84vw);
  height: 12px;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, rgba(251, 121, 37, 0.88) 38%, transparent 42%);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 24px 10px;
  pointer-events: none;
}

.site-footer {
  position: relative;
  width: min(100%, var(--max-canvas));
  margin: 283px auto 0;
  padding-bottom: 60px;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  top: -70px;
  width: 154px;
  height: 160px;
  background-image: url("assets/images/home-ornament-corner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.site-footer::before {
  left: max(22px, calc(50% - 692px));
}

.site-footer::after {
  right: max(22px, calc(50% - 692px));
  transform: scaleX(-1);
}

.scallop-divider {
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24' fill='none'%3E%3Cpath d='M0 5C4 20 20 20 24 5C28 20 44 20 48 5' stroke='%23EB4D6C' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 48px 24px;
}

.footer-credit {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.page-title {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.31;
  text-align: center;
}

.site-header--compact + main .page-title {
  padding-top: 24px;
}

body:not(.home-body) .page-title::after {
  content: "";
  display: block;
  width: 148px;
  height: 36px;
  margin: 10px auto 0;
  background-image: url("assets/images/home-ornament-sprig.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.schedule-list {
  display: grid;
  width: min(1123.35px, calc(100% - 80px));
  margin: 100px auto 0;
  gap: 79px;
}

.schedule-event {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 523.35px) minmax(0, 600px);
  align-items: center;
}

.schedule-event[hidden] {
  display: none !important;
}

.schedule-event--reverse {
  grid-template-columns: minmax(0, 600px) minmax(280px, 523.35px);
}

.schedule-art {
  width: 100%;
  margin: 0;
}

.schedule-art img {
  width: 100%;
  aspect-ratio: 523.35 / 394.21;
  object-fit: cover;
}

.schedule-copy {
  display: grid;
  gap: 40px;
  width: 100%;
}

.schedule-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.5;
}

.schedule-details {
  display: grid;
  gap: 30px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.31;
}

.schedule-details p {
  margin: 0;
}

.schedule-details p:last-child {
  font-weight: 400;
}

.schedule-body .site-footer {
  margin-top: 249px;
}

.schedule-body .schedule-event + .schedule-event::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  width: min(660px, 62vw);
  height: 10px;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, rgba(251, 121, 37, 0.88) 38%, transparent 42%);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 24px 10px;
  pointer-events: none;
}

.faq-main {
  width: min(1080px, calc(100% - 96px));
  margin: 0 auto;
}

.faq-intro {
  max-width: 760px;
  margin: var(--space-title-to-intro) auto 0;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  text-align: center;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  max-width: 760px;
  margin: var(--space-intro-to-content) auto 0;
}

.faq-item {
  position: relative;
}

.faq-item::before,
.faq-item:last-child::after {
  content: "";
  display: block;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='18' viewBox='0 0 48 18' fill='none'%3E%3Cpath d='M0 4C4 14 20 14 24 4C28 14 44 14 48 4' stroke='%23EB4D6C' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 48px 18px;
}

.faq-item:last-child::after {
  margin-top: 2px;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 34px 58px 34px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary {
  min-height: 0;
  padding-bottom: 18px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item h2 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-item p {
  margin: 0 58px 18px 0;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.48;
}

.faq-item p:last-child {
  margin-bottom: 36px;
}

.faq-body .site-footer {
  margin-top: 190px;
}

.rsvp-main {
  width: min(900px, calc(100% - 96px));
  margin: 0 auto;
  text-align: center;
}

.rsvp-intro {
  max-width: 720px;
  margin: var(--space-title-to-intro) auto 0;
}

.rsvp-note {
  display: grid;
  max-width: 760px;
  margin: var(--space-intro-to-content) auto 0;
  gap: 28px;
}

.rsvp-note h2 {
  margin: 0;
  font-family: var(--font-script);
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.25;
}

.rsvp-intro,
.rsvp-note p {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.48;
}

.rsvp-note p {
  margin: 0;
}

.rsvp-body .site-footer {
  margin-top: 210px;
}

.travel-main {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
}

.travel-intro {
  max-width: 790px;
  margin: var(--space-title-to-intro) auto 0;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  text-align: center;
}

.travel-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: var(--space-intro-to-content);
  padding: 0;
}

.travel-note {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.travel-note h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.travel-note p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.48;
}

.travel-guide {
  display: grid;
  gap: 96px;
  margin-top: var(--space-content-to-section);
}

.travel-section {
  display: grid;
  gap: 38px;
}

.travel-section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.travel-section-heading p {
  margin: 0 0 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.travel-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.18;
}

.travel-illustration {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin-top: 24px;
}

.travel-illustration--hotel {
  width: min(100%, 286px);
}

.travel-illustration--restaurant {
  width: min(100%, 248px);
}

.travel-illustration-row {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 54px;
  width: 100%;
  margin-top: 24px;
}

.travel-illustration-row .travel-illustration {
  margin-top: 0;
}

.travel-illustration--airboat {
  width: min(44vw, 296px);
}

.travel-illustration--garden {
  width: min(32vw, 208px);
}

.travel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
  row-gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: travel-item;
}

.travel-list li {
  position: relative;
  min-height: 178px;
  padding: 0;
  counter-increment: travel-item;
}

.travel-list li::before {
  content: counter(travel-item, decimal-leading-zero);
  display: block;
  margin-bottom: 21px;
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.travel-list > li > a,
.travel-list-title {
  display: inline;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-transform: uppercase;
}

.travel-list > li > a:hover,
.travel-list > li > a:focus-visible,
.travel-list p a:hover,
.travel-list p a:focus-visible {
  opacity: 0.62;
}

.travel-list p {
  margin: 16px 0 0;
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.48;
}

.travel-list p a {
  font-size: inherit;
  font-weight: 600;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  text-transform: none;
}

.travel-footnote {
  max-width: 720px;
  margin: 96px auto 0;
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1.35;
  text-align: center;
}

.travel-body .site-footer {
  margin-top: 164px;
}

@media (max-width: 1180px) {
  .header-art--villa {
    left: 6%;
    width: 320px;
  }

  .header-art--couple {
    right: 5%;
    width: 360px;
  }

  .site-nav {
    width: calc(100% - 70px);
    gap: 22px;
  }

  .home-landing::before,
  .home-landing::after {
    top: 232px;
    width: 126px;
    height: 430px;
    opacity: 0.74;
  }

  .script-line::before,
  .script-line::after {
    display: none;
  }
}

@media (min-width: 901px) {
  :root {
    --page-zoom: 0.9;
    --max-canvas: 1296px;
    --max-frame: 1210px;
    --space-title-to-intro: 68px;
    --space-intro-to-content: 97px;
    --space-content-to-section: 126px;
  }

  html {
    font-size: 90%;
  }

  body {
    zoom: var(--page-zoom);
  }

  .site-header--home {
    height: 446px;
  }

  .site-header--compact {
    height: 300px;
  }

  .site-header--home::before {
    top: 9px;
    width: min(864px, calc(100% - 58px));
    height: 65px;
  }

  .site-header--compact::before {
    top: 13px;
    width: min(648px, calc(100% - 76px));
    height: 49px;
  }

  .header-art--villa {
    top: 51px;
    width: 343px;
  }

  .header-art--couple {
    top: 36px;
    width: 406px;
  }

  .couple-mark--home {
    top: 84px;
  }

  .couple-mark--home::before,
  .couple-mark--home::after {
    width: 110px;
    height: 36px;
  }

  .couple-mark--compact {
    top: 67px;
  }

  .site-nav {
    width: min(975px, calc(100% - 99px));
    gap: 25px;
  }

  .site-header--home .site-nav {
    top: 372px;
  }

  .site-header--compact .site-nav {
    top: 224px;
  }

  .home-landing::before,
  .home-landing::after {
    top: 254px;
    width: 169px;
    height: 527px;
  }

  .home-landing::before {
    left: max(18px, calc(50% - 659px));
  }

  .home-landing::after {
    right: max(18px, calc(50% - 659px));
  }

  .hero-frame {
    width: min(var(--max-frame), calc(100% - 86px));
  }

  .hero-frame::before {
    inset: -17px;
  }

  .home-intro {
    width: min(1139px, calc(100% - 72px));
    margin-top: 53px;
  }

  .home-intro::after {
    width: min(684px, 84vw);
    height: 9px;
    margin-top: 38px;
    background-size: 20px 9px;
  }

  .script-line::before,
  .script-line::after {
    width: 101px;
    height: 31px;
  }

  .script-line::before {
    left: 83px;
  }

  .script-line::after {
    right: 83px;
  }

  .home-intro h1 {
    margin-top: 54px;
  }

  .home-schedule {
    margin-top: 97px;
  }

  .home-schedule .page-title::after {
    width: 167px;
    height: 38px;
    margin-top: 9px;
  }

  .home-schedule .schedule-list {
    margin-top: 70px;
  }

  .home-body .schedule-event + .schedule-event::before {
    top: -41px;
    width: min(972px, 84vw);
    height: 11px;
  }

  .site-footer {
    margin-top: 255px;
    padding-bottom: 54px;
  }

  .site-footer::before,
  .site-footer::after {
    top: -63px;
    width: 139px;
    height: 144px;
  }

  .scallop-divider {
    height: 29px;
    background-size: 43px 22px;
  }

  body:not(.home-body) .page-title::after {
    width: 133px;
    height: 32px;
    margin-top: 9px;
  }

  .schedule-list {
    width: min(1011px, calc(100% - 72px));
    margin-top: 90px;
    gap: 71px;
  }

  .schedule-copy {
    gap: 36px;
  }

  .schedule-details {
    gap: 27px;
  }

  .faq-main {
    width: min(972px, calc(100% - 86px));
  }

  .rsvp-main {
    width: min(810px, calc(100% - 86px));
  }

  .travel-main {
    width: min(1008px, calc(100% - 86px));
  }

  .travel-notes {
    gap: 43px;
  }

  .travel-guide {
    gap: 86px;
  }

  .travel-section {
    gap: 34px;
  }

  .travel-list {
    column-gap: 52px;
    row-gap: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --space-title-to-intro: 60px;
    --space-intro-to-content: 82px;
    --space-content-to-section: 108px;
  }

  .site-header--compact {
    height: 292px;
  }

  .site-header--compact::before {
    top: 10px;
    width: min(560px, calc(100% - 56px));
    height: 44px;
  }

  .site-header--home {
    height: 432px;
  }

  .site-header--home::before {
    top: 12px;
    width: min(720px, calc(100% - 48px));
    height: 58px;
  }

  .header-art {
    opacity: 0.92;
  }

  .header-art--villa {
    top: 52px;
    left: 4%;
    width: 250px;
  }

  .header-art--couple {
    top: 54px;
    right: 2%;
    width: 270px;
  }

  .couple-mark--home {
    top: 108px;
    font-size: 3rem;
  }

  .couple-mark--compact {
    top: 62px;
  }

  .couple-mark--home::before,
  .couple-mark--home::after {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    position: absolute;
    top: 348px;
    left: 50%;
    z-index: 2;
    display: block;
    width: calc(100% - 40px);
    transform: translateX(-50%);
    color: var(--color-ink);
    text-align: center;
  }

  .mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::before,
  .mobile-nav summary::after {
    content: "";
    width: 28px;
    height: 2px;
    margin: 0 13px;
    background: currentColor;
  }

  .mobile-nav nav {
    display: grid;
    gap: 18px;
    width: min(360px, 100%);
    margin: 16px auto 0;
    padding: 22px;
    border: 2px solid currentColor;
    background: var(--color-page);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

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

  .site-header--compact .mobile-nav {
    top: 216px;
  }

  .hero-frame {
    width: calc(100% - 40px);
  }

  .hero-frame::before {
    inset: -16px;
  }

  .home-intro {
    margin-top: 128px;
  }

  .script-line {
    font-size: 2.2rem;
  }

  .home-intro h1 {
    font-size: 3.35rem;
  }

  .home-intro::after {
    width: min(620px, 86vw);
    height: 9px;
    margin-top: 34px;
    background-size: 20px 9px;
  }

  .home-schedule {
    margin-top: 73px;
  }

  .home-schedule .schedule-list {
    margin-top: 66px;
  }

  .schedule-list {
    width: min(760px, calc(100% - 60px));
    margin-top: 86px;
    gap: 70px;
  }

  .schedule-event,
  .schedule-event--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .schedule-event--reverse .schedule-art {
    order: -1;
  }

  .schedule-art {
    width: min(430px, 100%);
    justify-self: center;
  }

  .schedule-copy {
    gap: 24px;
    text-align: center;
  }

  .schedule-copy h2 {
    font-size: 2.35rem;
    line-height: 1.25;
  }

  .schedule-details {
    gap: 18px;
    font-size: 1.05rem;
  }

  .faq-main {
    width: min(760px, calc(100% - 60px));
  }

  .faq-intro {
    font-size: 1.15rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 92px;
    padding: 30px 52px 30px 0;
  }

  .faq-item[open] summary {
    min-height: 0;
    padding-bottom: 16px;
  }

  .faq-item p {
    margin-right: 52px;
  }

  .rsvp-main {
    width: min(760px, calc(100% - 60px));
  }

  .rsvp-note h2 {
    font-size: 2.35rem;
  }

  .travel-main {
    width: min(760px, calc(100% - 60px));
  }

  .travel-intro {
    font-size: 1.15rem;
  }

  .travel-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .travel-section {
    gap: 30px;
  }

  .travel-section-heading h2 {
    font-size: 2.75rem;
  }

  .travel-illustration {
    margin-top: 20px;
  }

  .travel-illustration--hotel {
    width: min(100%, 252px);
  }

  .travel-illustration--restaurant {
    width: min(100%, 224px);
  }

  .travel-illustration-row {
    gap: 34px;
    margin-top: 20px;
  }

  .travel-illustration--airboat {
    width: min(48vw, 258px);
  }

  .travel-illustration--garden {
    width: min(34vw, 176px);
  }

  .travel-list {
    column-gap: 42px;
    row-gap: 44px;
  }

  .travel-list li {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --space-title-to-intro: 44px;
    --space-intro-to-content: 62px;
    --space-content-to-section: 86px;
  }

  .site-header {
    overflow: hidden;
  }

  .site-header--home {
    height: 360px;
  }

  .site-header--home::before {
    top: 8px;
    width: min(360px, calc(100% - 24px));
    height: 34px;
  }

  .site-header--compact {
    height: 250px;
  }

  .site-header--compact::before {
    display: none;
  }

  .header-art--villa {
    top: 44px;
    left: 0;
    width: 156px;
  }

  .header-art--couple {
    top: 54px;
    right: 0;
    width: 164px;
  }

  .couple-mark {
    left: 50%;
  }

  .couple-mark--home {
    top: 94px;
    font-size: 2.45rem;
  }

  .couple-mark--compact {
    top: 34px;
    font-size: 1.85rem;
  }

  .mobile-nav {
    top: 278px;
  }

  .site-header--compact .mobile-nav {
    top: 166px;
  }

  .hero-frame {
    width: calc(100% - 24px);
    aspect-ratio: 1 / 1.28;
    border-width: 4px;
  }

  .home-landing {
    overflow: hidden;
  }

  .home-landing::before,
  .home-landing::after {
    top: 126px;
    width: 58px;
    height: 246px;
    opacity: 0.74;
  }

  .home-landing::before {
    left: -10px;
  }

  .home-landing::after {
    right: -10px;
  }

  .hero-frame::before {
    inset: -9px;
  }

  .hero-frame img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
  }

  .home-intro {
    width: calc(100% - 34px);
    margin-top: 34px;
  }

  .script-line {
    max-width: 315px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.3rem, 6vw, 1.55rem);
    line-height: 1.38;
  }

  .home-intro h1 {
    margin-top: 22px;
    font-size: clamp(1.6rem, 7vw, 1.9rem);
    line-height: 1.22;
    white-space: nowrap;
  }

  .home-intro h1::before,
  .home-intro h1::after {
    display: none;
  }

  .home-intro::after {
    width: min(330px, 88vw);
    height: 8px;
    margin-top: 22px;
    background-size: 18px 8px;
  }

  .home-schedule {
    margin-top: 62px;
  }

  .home-schedule .schedule-list {
    margin-top: 48px;
  }

  .home-schedule .page-title::after {
    width: 124px;
    height: 30px;
    margin-top: 6px;
  }

  .site-footer {
    margin-top: 132px;
    padding-bottom: 38px;
  }

  .site-footer::before,
  .site-footer::after {
    top: -44px;
    width: 94px;
    height: 100px;
    opacity: 0.9;
  }

  .site-footer::before {
    left: 6px;
  }

  .site-footer::after {
    right: 6px;
  }

  .scallop-divider {
    background-size: 40px 20px;
  }

  .page-title {
    font-size: 2.1rem;
  }

  .travel-main .page-title {
    font-size: 1.92rem;
  }

  .site-header--compact + main .page-title {
    padding-top: 18px;
  }

  body:not(.home-body) .page-title::after {
    width: 118px;
    height: 29px;
    margin-top: 7px;
  }

  .schedule-list {
    width: calc(100% - 34px);
    margin-top: 58px;
    gap: 64px;
  }

  .schedule-art {
    width: min(320px, 100%);
  }

  .schedule-copy {
    gap: 20px;
  }

  .schedule-copy h2 {
    font-size: 1.7rem;
  }

  .schedule-details {
    gap: 16px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .home-body .schedule-event + .schedule-event::before {
    top: -39px;
    width: min(330px, 88vw);
    height: 8px;
    background-size: 18px 8px;
  }

  .schedule-body .schedule-event + .schedule-event::before {
    top: -35px;
    width: min(330px, 88vw);
    height: 8px;
    background-size: 18px 8px;
  }

  .faq-main {
    width: calc(100% - 34px);
  }

  .faq-intro {
    font-size: 1rem;
    line-height: 1.48;
  }

  .faq-list {
    margin-top: var(--space-intro-to-content);
  }

  .faq-item summary {
    min-height: 78px;
    padding: 24px 42px 24px 0;
  }

  .faq-item[open] summary {
    min-height: 0;
    padding-bottom: 14px;
  }

  .faq-item h2 {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .faq-item p {
    margin: 0 42px 14px 0;
    font-size: 0.98rem;
    line-height: 1.47;
  }

  .faq-item p:last-child {
    margin-bottom: 26px;
  }

  .travel-main {
    width: calc(100% - 34px);
  }

  .travel-intro {
    font-size: 1rem;
    line-height: 1.48;
  }

  .travel-notes {
    gap: 24px;
  }

  .travel-note {
    gap: 12px;
  }

  .travel-note h2 {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .travel-note p {
    font-size: 0.98rem;
    line-height: 1.47;
  }

  .travel-guide {
    gap: 72px;
  }

  .travel-section {
    gap: 24px;
  }

  .travel-section-heading p {
    margin-bottom: 14px;
    font-size: 0.8rem;
  }

  .travel-section-heading h2 {
    font-size: 2.2rem;
  }

  .travel-illustration {
    margin-top: 16px;
  }

  .travel-illustration--hotel {
    width: min(78vw, 216px);
  }

  .travel-illustration--restaurant {
    width: min(75vw, 202px);
  }

  .travel-illustration-row {
    gap: 16px;
    margin-top: 16px;
  }

  .travel-illustration--airboat {
    width: min(54vw, 206px);
  }

  .travel-illustration--garden {
    width: min(34vw, 132px);
  }

  .travel-list {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .travel-list li::before {
    margin-bottom: 15px;
    font-size: 1.55rem;
  }

  .travel-list a {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .travel-list p {
    margin-top: 13px;
    font-size: 0.98rem;
    line-height: 1.47;
  }

  .travel-footnote {
    margin-top: 62px;
    font-size: 1.55rem;
    line-height: 1.35;
  }

  .schedule-body .site-footer {
    margin-top: 126px;
  }

  .faq-body .site-footer {
    margin-top: 118px;
  }

  .rsvp-main {
    width: calc(100% - 34px);
  }

  .rsvp-note {
    gap: 20px;
  }

  .rsvp-note h2 {
    font-size: 2rem;
  }

  .rsvp-intro,
  .rsvp-note p {
    font-size: 0.98rem;
    line-height: 1.47;
  }

  .rsvp-body .site-footer {
    margin-top: 116px;
  }

  .travel-body .site-footer {
    margin-top: 116px;
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 360px) {
  .page-title {
    font-size: 1.65rem;
  }

  .home-intro h1 {
    font-size: 1.65rem;
  }
}
