.hyde-document {
  max-width: 100%;
  overflow-x: hidden;
}

.hyde-page {
  --paper: #ead2a5;
  --paper-aged: #d5b577;
  --paper-light: #f5dfb8;
  --ink: #211d1a;
  --park: #24384a;
  --park-dark: #142431;
  --grass: #b36c3c;
  --sun: #dda934;
  --picnic: #973f33;
  --faded-red: #b8604f;
  --line: rgba(33, 29, 26, 0.3);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Gill Sans", "Gill Sans MT", Candara, Calibri, sans-serif;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(151, 63, 51, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 100%;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

.hyde-page *,
.hyde-page *::before,
.hyde-page *::after {
  box-sizing: border-box;
}

.hyde-page::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

.hyde-page a {
  color: inherit;
}

.hyde-page button,
.hyde-page input {
  font: inherit;
}

.hyde-page h1,
.hyde-page h2,
.hyde-page h3,
.hyde-page p,
.hyde-page figure {
  margin-top: 0;
}

.hyde-page h1,
.hyde-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.hyde-page :focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

#story,
#music,
#details,
#rsvp,
#hyde-photo-story-title {
  scroll-margin-top: 68px;
}

.hyde-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--paper-light);
  background: var(--park-dark);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.hyde-skip-link:focus {
  transform: translateY(0);
}

.hyde-mini-nav {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  min-height: 52px;
  padding: 0.55rem clamp(1rem, 3vw, 3.25rem);
  border-bottom: 1px solid rgba(38, 40, 33, 0.45);
  background: rgba(234, 210, 165, 0.94);
  backdrop-filter: blur(8px);
}

.hyde-mini-nav__name {
  justify-self: start;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  text-decoration: none;
}

.hyde-mini-nav__edition {
  margin-right: clamp(1.5rem, 4vw, 4rem);
  color: var(--picnic);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hyde-mini-nav nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.8rem);
}

.hyde-mini-nav nav a {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.hyde-mini-nav nav a:hover::after,
.hyde-mini-nav nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hyde-section-label,
.hyde-kicker {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hyde-section-label::before {
  content: "— ";
}

.hyde-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 164px;
  min-height: 48px;
  gap: 2rem;
  padding: 0.72rem 1rem 0.64rem;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 120ms ease, color 160ms ease, background 160ms ease;
}

.hyde-button:hover {
  color: var(--paper-light);
  background: var(--park);
  transform: rotate(-0.7deg);
}

.hyde-button:active {
  transform: scale(0.975);
}

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

.hyde-motion .hyde-reveal {
  opacity: 0;
  transform: translateY(22px) rotate(var(--reveal-rotate, 0deg));
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hyde-motion .hyde-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--settled-rotate, 0deg));
}

.hyde-photo {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  --settled-rotate: 0deg;
}

.hyde-photo__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 8px solid var(--paper-light);
  background:
    linear-gradient(145deg, rgba(23, 63, 50, 0.7), rgba(102, 122, 73, 0.62)),
    var(--grass);
  box-shadow: 0 14px 30px rgba(29, 31, 24, 0.16);
}

.hyde-photo__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(244, 230, 196, 0.08), transparent 60%, rgba(60, 42, 30, 0.12));
  mix-blend-mode: multiply;
}

.hyde-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.08) contrast(0.98);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.hyde-photo:hover img {
  transform: scale(1.018);
}

.hyde-photo.is-broken img {
  opacity: 0;
}

.hyde-photo__fallback {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  left: 1rem;
  z-index: -1;
  color: rgba(242, 234, 216, 0.78);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.hyde-photo figcaption {
  position: absolute;
  z-index: 3;
  padding: 0.25rem 0.55rem;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.1;
  box-shadow: 0 4px 12px rgba(38, 40, 33, 0.14);
}

.hyde-photo__print-mark {
  position: absolute;
  right: 0.8rem;
  bottom: 0.45rem;
  z-index: 2;
  max-width: calc(100% - 1.6rem);
  overflow: hidden;
  color: rgba(33, 29, 26, 0.62);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hyde-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(160px, 0.48fr) minmax(170px, 0.52fr);
  min-height: calc(100svh - 52px);
  padding: clamp(2.8rem, 6vw, 6.5rem) clamp(1.2rem, 4vw, 4.5rem) 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(221, 169, 52, 0.13) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, transparent 49.85%, rgba(38, 40, 33, 0.09) 50%, transparent 50.15%),
    var(--paper);
}

.hyde-hero::after {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.35rem;
  width: 4px;
  content: "";
  border-right: 1px solid rgba(151, 63, 51, 0.35);
  border-left: 1px solid rgba(151, 63, 51, 0.35);
}

.hyde-hero__copy {
  position: relative;
  z-index: 5;
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  align-self: center;
  max-width: 780px;
  padding: 1rem 0 2rem;
}

.hyde-hero__copy h1 {
  max-width: 610px;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 5.5vw, 5.85rem);
}

.hyde-hero__event {
  margin-bottom: 0.1rem;
  color: var(--picnic);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-style: italic;
}

.hyde-hero__tagline {
  margin-bottom: 1.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hyde-hero__brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin: 2.25rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hyde-hero__brief div {
  padding: 0.8rem 1rem 0.8rem 0;
}

.hyde-hero__brief div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hyde-hero__brief dt {
  margin-bottom: 0.25rem;
  color: var(--picnic);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hyde-hero__brief dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.83rem;
  line-height: 1.25;
}

.hyde-photo--hero {
  z-index: 2;
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  align-self: stretch;
  margin: 0 0 3rem 1.2rem;
  --settled-rotate: 1.2deg;
}

.hyde-photo--hero .hyde-photo__image-wrap {
  border-width: 11px 11px 42px;
  clip-path: polygon(0.8% 0.3%, 99.4% 0, 100% 98.9%, 1.6% 100%, 0 69%);
}

.hyde-photo--hero-small {
  z-index: 4;
  grid-column: 9 / 12;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  width: min(250px, 22vw);
  aspect-ratio: 4 / 5;
  margin: 0 -1.5rem -2rem 0;
  --settled-rotate: -4deg;
}

.hyde-photo--hero-small .hyde-photo__image-wrap {
  border-width: 8px 8px 30px;
}

.hyde-invitation-stamp {
  position: absolute;
  right: clamp(0.8rem, 3vw, 3rem);
  bottom: 2rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  width: min(300px, 26vw);
  padding: 1rem 1.1rem 0.95rem;
  border: 2px solid var(--picnic);
  color: var(--picnic);
  background: var(--paper-aged);
  box-shadow: 4px 5px 0 rgba(140, 63, 57, 0.25);
  transform: rotate(-1.5deg);
}

.hyde-invitation-stamp__label {
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hyde-invitation-stamp time {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.hyde-invitation-stamp strong {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hyde-invitation-stamp span:last-child {
  border-top: 1px solid currentColor;
  padding-top: 0.55rem;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.hyde-hero__route-slip {
  position: absolute;
  top: 5rem;
  right: 1.1rem;
  z-index: 7;
  display: flex;
  flex-direction: column;
  min-width: 138px;
  padding: 0.65rem 0.8rem;
  border-top: 5px solid var(--sun);
  color: var(--paper-light);
  background: var(--park);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  line-height: 1.65;
  text-transform: uppercase;
  transform: rotate(1.2deg);
  box-shadow: 5px 5px 0 rgba(33, 29, 26, 0.18);
}

.hyde-hero__route-slip strong {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.hyde-hero__edge-note {
  position: absolute;
  top: 36%;
  right: 0.8rem;
  z-index: 8;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hyde-folio {
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hyde-folio--hero {
  position: absolute;
  bottom: 1.1rem;
  left: 1.8rem;
  z-index: 7;
  color: var(--picnic);
}

.hyde-hero__map {
  position: absolute;
  right: 26%;
  bottom: -12%;
  z-index: 1;
  width: 52vw;
  color: var(--grass);
  opacity: 0.28;
  transform: rotate(-8deg);
}

.hyde-map {
  display: block;
  width: 100%;
  overflow: visible;
}

.hyde-map__boundary {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 3 7;
  stroke-width: 2;
}

.hyde-map__path,
.hyde-map__arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 9;
}

.hyde-map__path--thin {
  stroke-width: 5;
}

.hyde-map__water {
  fill: currentColor;
  opacity: 0.22;
}

.hyde-map__marker path {
  fill: var(--picnic);
}

.hyde-map__marker circle {
  fill: var(--paper);
}

.hyde-map text {
  fill: currentColor;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.hyde-map__arrow {
  stroke-width: 2;
}

.hyde-map__trees circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hyde-motion .hyde-draw-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.hyde-motion .is-drawn .hyde-draw-path,
.hyde-motion .hyde-map.is-drawn .hyde-draw-path {
  stroke-dashoffset: 0;
}

.hyde-hand-arrow {
  position: absolute;
  z-index: 6;
  width: 128px;
  fill: none;
  stroke: var(--picnic);
  stroke-linecap: round;
  stroke-width: 2;
}

.hyde-hand-arrow--hero {
  right: 21%;
  bottom: 4.5rem;
  transform: rotate(10deg);
}

.hyde-sprig {
  color: var(--grass);
}

.hyde-sprig--hero {
  position: absolute;
  bottom: -25px;
  left: 31%;
  width: 120px;
  transform: rotate(73deg);
}

.hyde-story {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 800px;
  padding: clamp(6rem, 11vw, 11rem) clamp(1.2rem, 5vw, 6rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 73%, rgba(36, 56, 74, 0.08) 73% 73.2%, transparent 73.2%),
    var(--paper-light);
}

.hyde-story__index {
  position: absolute;
  top: 3.5rem;
  left: 0;
  padding: 0.35rem 2rem 0.35rem 1rem;
  color: var(--paper-light);
  background: var(--park);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hyde-story__copy {
  z-index: 4;
  grid-column: 6 / 12;
  grid-row: 1;
  align-self: center;
  max-width: 680px;
  padding-left: clamp(0rem, 3vw, 3rem);
}

.hyde-story__copy h2 {
  margin-bottom: 1.65rem;
  font-size: clamp(2.35rem, 3.65vw, 3.9rem);
  line-height: 1.02;
}

.hyde-story__copy > p:not(.hyde-section-label) {
  max-width: 570px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hyde-story__plain {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.32rem !important;
  font-style: italic;
}

.hyde-story__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  max-width: 570px;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hyde-story__facts p {
  margin: 0;
  font-size: 0.82rem !important;
  line-height: 1.4;
}

.hyde-story__facts strong,
.hyde-story__facts span {
  display: block;
}

.hyde-story__facts strong {
  margin-bottom: 0.35rem;
  color: var(--picnic);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hyde-photo--story-main {
  grid-column: 1 / 6;
  grid-row: 1;
  align-self: start;
  aspect-ratio: 4 / 3;
  margin-top: 2rem;
  --settled-rotate: -2.3deg;
}

.hyde-photo--story-main .hyde-photo__image-wrap {
  border-width: 10px 10px 38px;
}

.hyde-photo--story-main figcaption {
  right: -1.5rem;
  bottom: -0.3rem;
  transform: rotate(3deg);
}

.hyde-photo--story-detail {
  z-index: 5;
  grid-column: 3 / 6;
  grid-row: 1;
  align-self: end;
  aspect-ratio: 1 / 1;
  margin: 0 -1rem -2rem 2rem;
  --settled-rotate: 4deg;
}

.hyde-photo--story-detail .hyde-photo__image-wrap {
  border-width: 8px 8px 28px;
}

.hyde-pencil-note {
  color: var(--picnic);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.1;
  transform: rotate(-6deg);
}

.hyde-pencil-note--story {
  position: absolute;
  bottom: 4rem;
  left: 42%;
}

.hyde-hand-arrow--story {
  bottom: 4.7rem;
  left: 32%;
  transform: scaleX(-1) rotate(-12deg);
}

.hyde-story__plan {
  position: absolute;
  right: 4vw;
  bottom: 3.5rem;
  z-index: 7;
  width: 230px;
  padding: 1.2rem 1.4rem 1.25rem;
  border: 1px solid var(--park);
  color: var(--paper-light);
  background: var(--park);
  box-shadow: 7px 8px 0 var(--sun);
  transform: rotate(1.3deg);
}

.hyde-story__plan > span {
  color: var(--sun);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hyde-story__plan ol {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style-position: inside;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.hyde-story__plan li {
  padding: 0.28rem 0;
  border-top: 1px solid rgba(245, 223, 184, 0.2);
}

.hyde-photo-story {
  position: relative;
  min-height: 1300px;
  padding: 7rem clamp(1rem, 3vw, 3rem) 9rem;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--park);
}

.hyde-photo-story::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(242, 234, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 216, 0.06) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
}

.hyde-photo-story::after {
  position: absolute;
  top: 0;
  right: 13%;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(221, 169, 52, 0.35);
}

.hyde-photo-story__heading {
  position: relative;
  z-index: 5;
  width: min(550px, 44vw);
  margin-left: 8vw;
}

.hyde-photo-story__heading h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 4.25vw, 4.4rem);
}

.hyde-photo-story__heading > p:last-child {
  max-width: 460px;
  color: rgba(247, 240, 223, 0.76);
}

.hyde-photo-story__heading .hyde-photo-story__shot-list {
  max-width: 500px;
  margin-top: 1.25rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(247, 240, 223, 0.24);
  color: var(--sun);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hyde-contact-sheet {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, 76px);
  margin-top: -5rem;
}

.hyde-contact-sheet .hyde-photo__image-wrap {
  border-color: #eee2c9;
}

.hyde-photo--contact-a {
  z-index: 3;
  grid-column: 8 / 13;
  grid-row: 1 / 6;
  --settled-rotate: 2.3deg;
}

.hyde-photo--contact-a figcaption {
  right: 6%;
  bottom: -0.35rem;
  transform: rotate(-2deg);
}

.hyde-photo--contact-b {
  grid-column: 2 / 7;
  grid-row: 5 / 9;
  --settled-rotate: -2deg;
}

.hyde-photo--contact-b figcaption {
  top: -0.45rem;
  right: -1rem;
  transform: rotate(3deg);
}

.hyde-photo--contact-c {
  z-index: 4;
  grid-column: 7 / 10;
  grid-row: 6 / 11;
  --settled-rotate: 4deg;
}

.hyde-photo--contact-c figcaption {
  right: -1.2rem;
  bottom: 2rem;
  transform: rotate(-4deg);
}

.hyde-photo--contact-d {
  grid-column: 10 / 13;
  grid-row: 7 / 12;
  --settled-rotate: -1deg;
}

.hyde-photo--contact-d figcaption {
  right: 0.4rem;
  bottom: -0.45rem;
  transform: rotate(2deg);
}

.hyde-photo--contact-e {
  z-index: 2;
  grid-column: 1 / 7;
  grid-row: 9 / 13;
  --settled-rotate: 1deg;
}

.hyde-photo--contact-f {
  z-index: 1;
  grid-column: 6 / 9;
  grid-row: 10 / 13;
  --settled-rotate: -5deg;
}

.hyde-contact-sheet__scribble {
  position: absolute;
  top: 40%;
  left: 45%;
  z-index: 7;
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.15;
  transform: rotate(-7deg);
}

.hyde-sprig--photos {
  position: absolute;
  top: 8rem;
  right: 4vw;
  width: 110px;
  color: var(--sun);
  opacity: 0.7;
  transform: rotate(23deg);
}

.hyde-photo-story__register {
  position: absolute;
  top: 13rem;
  right: 2.2rem;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  color: var(--sun);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-align: right;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hyde-folio--photos {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: rgba(245, 223, 184, 0.6);
}

.hyde-music {
  position: relative;
  min-height: 970px;
  padding: 9rem 0 7rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-aged);
}

.hyde-strings {
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 100%;
  height: 110px;
  overflow: visible;
}

.hyde-strings__lines path {
  fill: none;
  stroke: rgba(38, 40, 33, 0.44);
  stroke-width: 1.25;
  transform: translateY(var(--string-shift, 0px));
  transition: transform 240ms ease-out;
}

.hyde-strings__chord text {
  fill: var(--picnic);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.hyde-strings__chord circle {
  fill: var(--picnic);
}

.hyde-music__composition {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem clamp(1.2rem, 6vw, 7rem) 0;
}

.hyde-music__copy {
  position: relative;
  z-index: 4;
}

.hyde-music__small {
  margin-bottom: 1rem;
  color: var(--picnic);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hyde-music__copy h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.hyde-music__copy > p:not(.hyde-section-label):not(.hyde-music__small):not(.hyde-music__aside) {
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.45;
}

.hyde-music__aside {
  margin-top: 3rem;
  color: var(--picnic);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.1;
  transform: rotate(-3deg);
}

.hyde-music__ledger {
  max-width: 430px;
  margin: 3rem 0 0;
  border-top: 2px solid var(--ink);
}

.hyde-music__ledger div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(33, 29, 26, 0.25);
}

.hyde-music__ledger dt,
.hyde-music__ledger dd {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hyde-music__ledger dd {
  color: var(--picnic);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hyde-music__visual {
  position: relative;
  min-height: 650px;
}

.hyde-sound-hole {
  position: absolute;
  top: 3%;
  left: -11%;
  width: min(430px, 35vw);
  color: var(--picnic);
  opacity: 0.52;
  transform: rotate(-7deg);
}

.hyde-sound-hole circle,
.hyde-sound-hole path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hyde-sound-hole circle:nth-child(2) {
  stroke-dasharray: 3 5;
}

.hyde-sound-hole circle:nth-child(3) {
  stroke-dasharray: 12 3 2 4;
}

.hyde-photo--guitar-close {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 54%;
  height: 76%;
  --settled-rotate: 2.3deg;
}

.hyde-photo--guitar-close .hyde-photo__image-wrap {
  border-width: 11px 11px 43px;
}

.hyde-photo--guitar-wide {
  position: absolute;
  right: 36%;
  bottom: 0;
  z-index: 4;
  width: 56%;
  height: 39%;
  --settled-rotate: -3deg;
}

.hyde-photo--guitar-wide .hyde-photo__image-wrap {
  border-width: 8px 8px 28px;
}

.hyde-photo--guitar-wide figcaption {
  right: -1rem;
  bottom: -0.3rem;
  transform: rotate(3deg);
}

.hyde-details {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 30vw);
  min-height: 1150px;
  overflow: hidden;
  background: var(--grass);
}

.hyde-details__paper {
  position: relative;
  z-index: 2;
  margin: clamp(3rem, 7vw, 7rem) -2rem clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 6.5rem);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(38, 40, 33, 0.08) 32px),
    var(--paper-light);
  clip-path: polygon(0.5% 0, 99.8% 0.8%, 100% 99.1%, 71% 100%, 46% 99.1%, 22% 100%, 0 99.2%);
  box-shadow: 18px 19px 0 rgba(15, 45, 36, 0.22);
}

.hyde-details__check-strip {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 22px;
  background:
    linear-gradient(45deg, transparent 75%, rgba(151, 63, 51, 0.86) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(151, 63, 51, 0.86) 75%),
    linear-gradient(45deg, rgba(36, 56, 74, 0.88) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36, 56, 74, 0.88) 25%, transparent 25%);
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  background-size: 22px 22px;
}

.hyde-details__fold {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding-left: 2rem;
  color: var(--picnic);
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
}

.hyde-details__fold::before {
  position: absolute;
  top: 50%;
  right: calc(100% - 1.3rem);
  width: 72px;
  border-top: 1px dashed currentColor;
  content: "";
}

.hyde-details__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid var(--ink);
}

.hyde-details__header .hyde-section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.hyde-details__header h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.hyde-details__header > p:last-child {
  max-width: 230px;
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.2;
}

.hyde-details__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0 4rem;
}

.hyde-note {
  position: relative;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.hyde-note h3 {
  margin-bottom: 0.75rem;
  color: var(--picnic);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hyde-note p,
.hyde-note time {
  display: block;
  margin-bottom: 0.3rem;
}

.hyde-note time,
.hyde-note strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.hyde-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hyde-note li {
  position: relative;
  padding-left: 1.3rem;
}

.hyde-note li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--grass);
  content: "";
  transform: rotate(45deg);
}

.hyde-note__margin {
  max-width: 290px;
  margin: 1rem 0 0 auto;
  color: var(--picnic);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.15;
  transform: rotate(-2deg);
}

.hyde-note--weather {
  grid-column: 1 / -1;
  max-width: 660px;
}

.hyde-details__map-wrap {
  position: relative;
  margin: 3rem 0 0 auto;
  width: min(600px, 85%);
  color: var(--grass);
}

.hyde-details__map-wrap p {
  position: absolute;
  right: 8%;
  bottom: 4%;
  color: var(--picnic);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.1;
  transform: rotate(5deg);
}

.hyde-sprig--details {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 100px;
  transform: rotate(18deg);
}

.hyde-details__postmark {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 2px solid var(--picnic);
  border-radius: 50%;
  color: var(--picnic);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-8deg);
}

.hyde-details__postmark::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  content: "";
}

.hyde-details__postmark strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
}

.hyde-photo--details-path {
  align-self: stretch;
  width: calc(100% + 2rem);
  height: 100%;
}

.hyde-photo--details-path .hyde-photo__image-wrap {
  border: 0;
  box-shadow: none;
}

.hyde-photo--details-path img {
  filter: saturate(0.7) sepia(0.1) brightness(0.8);
}

.hyde-photo--details-path .hyde-photo__print-mark,
.hyde-photo--footer .hyde-photo__print-mark {
  display: none;
}

.hyde-rsvp {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(3rem, 8vw, 10rem);
  min-height: 700px;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.2rem, 8vw, 9rem);
  overflow: hidden;
  color: var(--paper-light);
  background: var(--picnic);
}

.hyde-rsvp::before {
  position: absolute;
  top: -100px;
  left: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(242, 234, 216, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 18px transparent,
    0 0 0 19px rgba(242, 234, 216, 0.15),
    0 0 0 40px transparent,
    0 0 0 41px rgba(242, 234, 216, 0.09);
}

.hyde-rsvp__copy,
.hyde-rsvp-form {
  position: relative;
  z-index: 2;
}

.hyde-rsvp-form::before,
.hyde-rsvp-form::after {
  position: absolute;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: var(--picnic);
}

.hyde-rsvp-form::before {
  top: 31%;
}

.hyde-rsvp-form::after {
  bottom: 18%;
}

.hyde-rsvp-form__stub {
  display: flex;
  justify-content: space-between;
  margin: -1rem 0 2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--picnic);
  color: var(--picnic);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hyde-rsvp__copy {
  align-self: center;
}

.hyde-rsvp__copy h2 {
  max-width: 650px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 4.6vw, 4.85rem);
}

.hyde-rsvp__copy > p:last-child {
  max-width: 430px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.hyde-rsvp-form {
  align-self: center;
  max-width: 620px;
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(38, 40, 33, 0.075) 36px),
    var(--paper-light);
  box-shadow: 13px 15px 0 rgba(62, 22, 20, 0.3);
  transform: rotate(0.8deg);
}

.hyde-field label,
.hyde-attendance legend {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--picnic);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hyde-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.35rem 0.25rem;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.hyde-field input:focus {
  outline: 0;
  border-bottom-color: var(--picnic);
  box-shadow: 0 3px 0 var(--sun);
}

.hyde-field__error {
  min-height: 1.3rem;
  margin: 0.4rem 0 1rem;
  color: var(--picnic);
  font-size: 0.82rem;
}

.hyde-attendance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.8rem;
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
}

.hyde-attendance legend {
  width: 100%;
}

.hyde-attendance label {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 0.65rem;
  cursor: pointer;
}

.hyde-attendance input {
  width: 21px;
  height: 21px;
  margin: 0;
  accent-color: var(--picnic);
}

.hyde-button--submit {
  border-color: var(--park);
  color: var(--paper-light);
  background: var(--park);
  cursor: pointer;
}

.hyde-button--submit:hover {
  color: var(--paper-light);
  background: var(--picnic);
}

.hyde-button--submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.hyde-rsvp-form__status {
  min-height: 2.5rem;
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.hyde-rsvp-form__status.is-error {
  color: var(--picnic);
}

.hyde-rsvp-form.is-complete {
  display: grid;
  min-height: 310px;
  place-items: center;
}

.hyde-rsvp-form.is-complete > :not(.hyde-rsvp-form__status) {
  display: none;
}

.hyde-rsvp-form.is-complete .hyde-rsvp-form__status {
  min-height: 0;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  text-align: center;
}

.hyde-rsvp__torn-edge {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 22px;
  background: var(--paper);
  clip-path: polygon(0 70%, 2% 25%, 4% 72%, 6% 34%, 8% 69%, 10% 20%, 12% 73%, 14% 32%, 16% 71%, 18% 23%, 20% 69%, 22% 29%, 24% 74%, 26% 28%, 28% 69%, 30% 22%, 32% 72%, 34% 30%, 36% 68%, 38% 24%, 40% 72%, 42% 33%, 44% 70%, 46% 26%, 48% 74%, 50% 30%, 52% 69%, 54% 22%, 56% 72%, 58% 28%, 60% 70%, 62% 24%, 64% 73%, 66% 31%, 68% 69%, 70% 22%, 72% 73%, 74% 30%, 76% 70%, 78% 24%, 80% 72%, 82% 31%, 84% 68%, 86% 23%, 88% 72%, 90% 29%, 92% 70%, 94% 21%, 96% 73%, 98% 31%, 100% 67%, 100% 100%, 0 100%);
}

.hyde-footer {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--park-dark);
}

.hyde-photo--footer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hyde-photo--footer .hyde-photo__image-wrap {
  border: 0;
  box-shadow: none;
}

.hyde-photo--footer img {
  filter: saturate(0.6) sepia(0.1) brightness(0.45);
}

.hyde-photo--footer .hyde-photo__image-wrap::after {
  background: linear-gradient(90deg, rgba(15, 45, 36, 0.88), rgba(15, 45, 36, 0.18));
  mix-blend-mode: normal;
}

.hyde-footer__paper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  width: min(760px, 70vw);
  padding: 5rem clamp(2rem, 8vw, 8rem);
}

.hyde-footer__closing {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.hyde-footer__paper > p:not(.hyde-footer__closing) {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hyde-footer__paper .hyde-footer__edition {
  max-width: 560px;
  margin-top: 0.65rem;
  color: var(--sun);
  font-size: 0.58rem;
}

.hyde-footer__paper > a {
  align-self: flex-start;
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
}

.hyde-sprig--footer {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: 130px;
  color: var(--sun);
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  .hyde-mini-nav__edition {
    display: none;
  }

  .hyde-hero {
    grid-template-rows: minmax(430px, 0.68fr) minmax(230px, 0.32fr);
  }

  .hyde-hero__copy {
    grid-column: 1 / 10;
    grid-row: 1;
    align-self: start;
  }

  .hyde-hero__copy h1 {
    max-width: 640px;
  }

  .hyde-photo--hero {
    grid-column: 6 / 13;
    grid-row: 1 / 3;
    margin-top: 8rem;
  }

  .hyde-photo--hero-small {
    grid-column: 2 / 5;
    grid-row: 2;
    justify-self: start;
    width: 190px;
    margin: 0;
  }

  .hyde-invitation-stamp {
    right: auto;
    bottom: 2.5rem;
    left: 26%;
    width: 260px;
  }

  .hyde-hand-arrow--hero {
    right: auto;
    bottom: 11rem;
    left: 33%;
  }

  .hyde-story {
    min-height: 980px;
  }

  .hyde-story__copy {
    grid-column: 5 / 13;
    align-self: start;
  }

  .hyde-photo--story-main {
    grid-column: 1 / 8;
    align-self: end;
  }

  .hyde-photo--story-detail {
    grid-column: 7 / 11;
  }

  .hyde-contact-sheet {
    grid-template-rows: repeat(12, 64px);
  }

  .hyde-music__composition {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
  }

  .hyde-music__visual {
    min-height: 580px;
  }

  .hyde-details {
    grid-template-columns: minmax(0, 1fr) 24vw;
  }

  .hyde-details__paper {
    margin-left: 1.3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .hyde-details__grid {
    gap: 0 2.5rem;
  }

  .hyde-rsvp {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media (max-width: 760px) {
  .hyde-page {
    font-size: 16px;
  }

  .hyde-mini-nav {
    grid-template-columns: 1fr auto;
    padding: 0.45rem 0.8rem;
  }

  .hyde-mini-nav__edition {
    display: none;
  }

  .hyde-mini-nav__name {
    max-width: 150px;
    font-size: 0.95rem;
    line-height: 1;
  }

  .hyde-mini-nav nav {
    gap: 0.7rem;
  }

  .hyde-mini-nav nav a {
    min-height: 42px;
    padding: 0.78rem 0.15rem 0.4rem;
    font-size: 0.61rem;
  }

  .hyde-hero {
    display: block;
    min-height: 960px;
    padding: 3.8rem 1rem 3rem;
    background: var(--paper);
  }

  .hyde-hero__copy {
    max-width: 92%;
    padding: 0;
  }

  .hyde-hero__copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.75rem, 11vw, 3.55rem);
  }

  .hyde-hero__event {
    margin-bottom: 1.2rem;
  }

  .hyde-hero__brief {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
  }

  .hyde-hero__brief div:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hyde-photo--hero {
    position: absolute;
    right: -13%;
    bottom: 4rem;
    width: 84%;
    height: 49%;
    margin: 0;
  }

  .hyde-photo--hero-small {
    position: absolute;
    bottom: 2.5rem;
    left: -3%;
    width: 39%;
    height: 31%;
    margin: 0;
  }

  .hyde-invitation-stamp {
    right: 0.7rem;
    bottom: 1.5rem;
    left: auto;
    width: 52%;
    padding: 0.7rem;
  }

  .hyde-invitation-stamp time {
    font-size: 1.05rem;
  }

  .hyde-invitation-stamp strong {
    margin-bottom: 0.4rem;
    font-size: 0.68rem;
  }

  .hyde-invitation-stamp span:last-child {
    font-size: 0.75rem;
  }

  .hyde-hero__route-slip {
    top: auto;
    right: 0.5rem;
    bottom: 25rem;
    min-width: 122px;
    padding: 0.45rem 0.6rem;
  }

  .hyde-hero__edge-note,
  .hyde-folio--hero {
    display: none;
  }

  .hyde-hand-arrow--hero,
  .hyde-sprig--hero {
    display: none;
  }

  .hyde-hero__map {
    right: -20%;
    bottom: 23%;
    width: 115vw;
  }

  .hyde-story {
    display: block;
    min-height: 1260px;
    padding: 7rem 1rem 4rem;
  }

  .hyde-story__copy {
    position: relative;
    z-index: 6;
    padding: 0;
  }

  .hyde-story__copy h2 {
    font-size: clamp(2.15rem, 8.5vw, 2.85rem);
  }

  .hyde-story__facts {
    gap: 0.85rem;
  }

  .hyde-photo--story-main {
    position: absolute;
    right: 12%;
    bottom: 6rem;
    left: -4%;
    height: 32%;
    margin: 0;
  }

  .hyde-photo--story-detail {
    position: absolute;
    right: -5%;
    bottom: 2.5rem;
    width: 45%;
    height: 25%;
    margin: 0;
  }

  .hyde-pencil-note--story {
    display: none;
  }

  .hyde-story__plan {
    right: 0.85rem;
    bottom: 24rem;
    width: 190px;
    padding: 0.9rem 1rem;
    box-shadow: 5px 6px 0 var(--sun);
  }

  .hyde-story__plan ol {
    font-size: 0.88rem;
  }

  .hyde-hand-arrow--story {
    display: none;
  }

  .hyde-photo-story {
    min-height: 1640px;
    padding: 5rem 0.75rem 6rem;
  }

  .hyde-photo-story__heading {
    width: auto;
    margin: 0 0.25rem;
  }

  .hyde-photo-story__heading h2 {
    font-size: clamp(2.35rem, 9.5vw, 3.2rem);
  }

  .hyde-contact-sheet {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(22, 62px);
    margin-top: 2rem;
  }

  .hyde-photo--contact-a {
    grid-column: 2 / 7;
    grid-row: 1 / 6;
  }

  .hyde-photo--contact-b {
    grid-column: 1 / 5;
    grid-row: 5 / 9;
  }

  .hyde-photo--contact-c {
    grid-column: 4 / 7;
    grid-row: 8 / 14;
  }

  .hyde-photo--contact-d {
    grid-column: 1 / 4;
    grid-row: 11 / 17;
  }

  .hyde-photo--contact-e {
    grid-column: 2 / 7;
    grid-row: 16 / 21;
  }

  .hyde-photo--contact-f {
    grid-column: 1 / 4;
    grid-row: 19 / 23;
  }

  .hyde-contact-sheet__scribble {
    top: 46%;
    left: 42%;
  }

  .hyde-sprig--photos {
    display: none;
  }

  .hyde-photo-story__register {
    top: auto;
    right: 0.75rem;
    bottom: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 78%;
    writing-mode: horizontal-tb;
  }

  .hyde-folio--photos {
    bottom: 2.8rem;
    left: 0.8rem;
  }

  .hyde-music {
    min-height: 1120px;
    padding: 7rem 0 4rem;
  }

  .hyde-strings {
    top: 1.2rem;
    width: 160%;
  }

  .hyde-music__composition {
    display: block;
    padding: 3.5rem 1rem 0;
  }

  .hyde-music__copy h2 {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .hyde-music__visual {
    min-height: 570px;
    margin-top: 2.5rem;
  }

  .hyde-music__ledger {
    margin-top: 2rem;
  }

  .hyde-sound-hole {
    top: 3rem;
    left: -6rem;
    width: 320px;
  }

  .hyde-photo--guitar-close {
    top: 0;
    right: -4%;
    width: 64%;
    height: 72%;
  }

  .hyde-photo--guitar-wide {
    right: 28%;
    width: 70%;
    height: 37%;
  }

  .hyde-details {
    display: block;
    min-height: 0;
    padding: 2rem 0 0;
  }

  .hyde-details__paper {
    margin: 0 0.7rem -1rem;
    padding: 3.2rem 1.3rem 4.5rem;
    clip-path: polygon(0 0, 99.5% 0.5%, 100% 99.2%, 72% 100%, 49% 99.2%, 24% 100%, 0 99.2%);
    box-shadow: 9px 10px 0 rgba(15, 45, 36, 0.2);
  }

  .hyde-details__header {
    display: block;
    margin-bottom: 1.5rem;
  }

  .hyde-details__header h2 {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .hyde-details__header > p:last-child {
    margin-top: 1rem;
  }

  .hyde-details__grid {
    display: block;
  }

  .hyde-note {
    padding: 1.25rem 0;
  }

  .hyde-details__map-wrap {
    width: 100%;
    margin-top: 2rem;
  }

  .hyde-sprig--details {
    display: none;
  }

  .hyde-details__fold {
    top: 2rem;
    right: 1rem;
    font-size: 0.62rem;
  }

  .hyde-details__postmark {
    right: 1rem;
    bottom: 2.2rem;
    width: 88px;
    height: 88px;
  }

  .hyde-details__postmark strong {
    font-size: 0.95rem;
  }

  .hyde-photo--details-path {
    width: 100%;
    height: 380px;
  }

  .hyde-rsvp {
    display: block;
    min-height: 0;
    padding: 6rem 1rem 7rem;
  }

  .hyde-rsvp__copy h2 {
    font-size: clamp(2.75rem, 11vw, 3.75rem);
  }

  .hyde-rsvp-form {
    margin-top: 3rem;
    padding: 2rem 1.1rem;
    box-shadow: 8px 9px 0 rgba(62, 22, 20, 0.3);
  }

  .hyde-rsvp-form__stub {
    margin-top: -0.5rem;
  }

  .hyde-attendance {
    display: block;
  }

  .hyde-attendance label {
    width: 100%;
  }

  .hyde-button--submit {
    width: 100%;
  }

  .hyde-footer,
  .hyde-footer__paper {
    min-height: 620px;
  }

  .hyde-footer__paper {
    width: 88%;
    padding: 4rem 1.2rem;
  }

  .hyde-footer__closing {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }
}

@media (max-width: 390px) {
  .hyde-mini-nav__name {
    max-width: 114px;
    font-size: 0.86rem;
  }

  .hyde-mini-nav nav {
    gap: 0.35rem;
  }

  .hyde-hero {
    min-height: 930px;
  }

  .hyde-story {
    min-height: 1280px;
  }

  .hyde-photo-story {
    min-height: 1580px;
  }

  .hyde-contact-sheet {
    grid-template-rows: repeat(22, 59px);
  }

  .hyde-music {
    min-height: 1080px;
  }
}

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

  .hyde-motion .hyde-reveal {
    opacity: 1;
    transform: rotate(var(--settled-rotate, 0deg));
  }

  .hyde-motion .hyde-draw-path {
    stroke-dashoffset: 0;
  }
}
