:root {
  --black: #171717;
  --white: #f2f0e9;
  --paper: #dedbd1;
  --oxblood: #6b1f2b;
  --sage: #879681;
  --ice: #bfcfdc;
  --metal: #777a7d;
  --signal: #d7ef43;
  --line: rgba(23, 23, 23, 0.24);
  --display: "Bodoni 72", Didot, "Times New Roman", serif;
  --editorial: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--black);
  background: var(--white);
  font-family: var(--editorial);
  font-size: 16px;
  line-height: 1.5;
}

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  border-bottom: 1px solid rgba(242, 240, 233, 0.35);
  color: var(--white);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.brand span {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-underline-offset: 6px;
}

.site-nav a:not(:hover, :focus-visible) {
  text-decoration-color: transparent;
}

.header-rsvp {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--signal);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 44px);
  max-height: 980px;
  grid-template-columns: 0.18fr minmax(0, 0.86fr) minmax(440px, 0.96fr);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 13px;
  content: "";
  background: var(--signal);
}

.hero-issue {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 116px 10px 64px;
  color: var(--black);
  background: var(--ice);
}

.hero-issue span,
.hero-issue small {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-issue strong {
  font-family: var(--display);
  font-size: clamp(82px, 10vw, 160px);
  font-weight: 400;
  line-height: 0.75;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 118px clamp(26px, 5vw, 78px) 80px;
}

.hero-copy .kicker {
  color: var(--signal);
}

.hero h1 {
  display: flex;
  max-width: 6.2ch;
  flex-direction: column;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 156px);
  font-weight: 400;
  line-height: 0.7;
}

.hero h1 span:last-child {
  margin-left: 0.38em;
  font-style: italic;
}

.hero h1 i {
  margin: 0.12em 0 0.1em 1.25em;
  color: var(--oxblood);
  font-size: 0.45em;
  font-weight: 400;
  line-height: 0.7;
}

.hero-date {
  margin: clamp(36px, 6vh, 70px) 0 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-look {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--oxblood);
}

.hero-look::before {
  position: absolute;
  top: 11%;
  right: 11%;
  width: 22%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(242, 240, 233, 0.62);
  border-radius: 50%;
}

.hero-look::after {
  position: absolute;
  top: 31%;
  right: 0;
  width: 74%;
  height: 1px;
  content: "";
  background: rgba(242, 240, 233, 0.42);
}

.hero-look > p {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 8%;
  margin: 0;
  font-size: clamp(21px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 0.92;
  text-align: right;
}

.crop-mark {
  position: absolute;
  z-index: 5;
  left: 9%;
  width: 38px;
  height: 38px;
  border-left: 1px solid var(--white);
}

.crop-mark::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--white);
}

.crop-mark-top {
  top: 10%;
}

.crop-mark-bottom {
  bottom: 10%;
  transform: rotate(-90deg);
}

.hero-model {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 38%;
  height: 77%;
}

.hero-model-left {
  left: 15%;
}

.hero-model-right {
  right: 7%;
  height: 69%;
}

.model-head {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 23%;
  aspect-ratio: 0.77;
  border-radius: 48% 48% 42% 42%;
  background: var(--paper);
  transform: translateX(-50%);
}

.model-neck {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 9%;
  height: 10%;
  background: var(--paper);
  transform: translateX(-50%);
}

.model-body {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 68%;
  height: 62%;
  background: var(--black);
  clip-path: polygon(26% 0, 74% 0, 91% 100%, 9% 100%);
  transform: translateX(-50%);
}

.hero-model-left .model-body::after {
  position: absolute;
  top: 0;
  left: 51%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(242, 240, 233, 0.32);
}

.hero-model-right .model-body {
  width: 88%;
  background: var(--ice);
  clip-path: polygon(33% 0, 67% 0, 100% 100%, 0 100%);
}

.model-leg {
  position: absolute;
  bottom: 0;
  width: 12%;
  height: 24%;
  background: var(--paper);
}

.leg-left {
  left: 37%;
}

.leg-right {
  right: 37%;
}

.hero-model-right .model-leg {
  background: var(--black);
}

.hero-note {
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: calc(18% + clamp(26px, 5vw, 78px));
  margin: 0;
  color: rgba(242, 240, 233, 0.52);
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  line-height: 1.2;
}

.invitation,
.lookbook,
.swatches,
.program,
.venue,
.notes,
.rsvp,
.site-footer {
  padding-inline: clamp(22px, 6vw, 102px);
}

.invitation {
  display: grid;
  grid-template-columns: 0.2fr minmax(300px, 1fr) minmax(280px, 0.74fr);
  gap: clamp(32px, 6vw, 96px);
  padding-top: clamp(92px, 12vw, 180px);
  padding-bottom: clamp(92px, 12vw, 180px);
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 150px);
  line-height: 0.72;
}

.invitation h2,
.lookbook h2,
.swatches h2,
.program h2,
.venue h2,
.notes h2,
.rsvp h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.86;
}

.invitation-copy {
  padding-top: 38px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 21px);
}

.invitation-copy p {
  margin: 0 0 1.35em;
}

.editor-signature {
  padding-top: 20px;
  color: var(--oxblood);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 27px;
  font-style: italic;
}

.lookbook {
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: clamp(90px, 12vw, 180px);
  color: var(--white);
  background: var(--black);
}

.lookbook-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 70px;
}

.lookbook-heading .kicker {
  color: var(--signal);
}

.lookbook-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(242, 240, 233, 0.68);
  font-family: var(--serif);
  font-size: 19px;
}

.look-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 240, 233, 0.42);
  border-bottom: 1px solid rgba(242, 240, 233, 0.42);
}

.look-tab {
  display: grid;
  min-width: 0;
  min-height: 88px;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--white);
  border: 0;
  border-right: 1px solid rgba(242, 240, 233, 0.42);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.look-tab:last-child {
  border-right: 0;
}

.look-tab > span {
  color: rgba(242, 240, 233, 0.44);
  font-size: 10px;
  font-weight: 700;
}

.look-tab strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.swatch-contrast {
  border: 7px solid var(--ice);
  background: var(--black);
}

.swatch-drape {
  background: var(--oxblood);
}

.swatch-monochrome {
  background: var(--sage);
}

.look-tab:hover,
.look-tab.is-active {
  color: var(--black);
  background: var(--signal);
}

.look-tab.is-active > span {
  color: var(--black);
}

.look-panel {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(320px, 1.18fr) minmax(260px, 0.82fr);
  border-bottom: 1px solid rgba(242, 240, 233, 0.42);
}

.look-figure {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 690px;
  place-items: center;
  margin: 0;
  overflow: hidden;
  color: var(--black);
  background: var(--ice);
  isolation: isolate;
}

.look-drape .look-figure {
  background: var(--oxblood);
}

.look-monochrome .look-figure {
  background: var(--sage);
}

.look-figure::before,
.look-figure::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid currentColor;
}

.look-figure::before {
  top: 8%;
  left: 10%;
  width: 56%;
  height: 68%;
}

.look-figure::after {
  right: 9%;
  bottom: 10%;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.figure-index {
  position: absolute;
  top: 5%;
  right: 6%;
  font-family: var(--display);
  font-size: clamp(90px, 13vw, 190px);
  line-height: 0.74;
  opacity: 0.28;
}

.look-figure figcaption {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.fashion-model {
  position: relative;
  width: min(38%, 230px);
  height: 76%;
  min-height: 510px;
}

.fashion-head {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 30%;
  aspect-ratio: 0.75;
  border-radius: 46% 46% 42% 42%;
  background: var(--paper);
  transform: translateX(-50%);
}

.fashion-neck {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 12%;
  height: 10%;
  background: var(--paper);
  transform: translateX(-50%);
}

.fashion-garment {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 50%;
  width: 76%;
  height: 62%;
  background: var(--black);
  clip-path: polygon(18% 0, 82% 0, 96% 100%, 4% 100%);
  transform: translateX(-50%);
}

.fashion-garment::after {
  position: absolute;
  top: 0;
  left: 52%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(242, 240, 233, 0.36);
}

.fashion-sleeve {
  position: absolute;
  z-index: 1;
  top: 22%;
  width: 26%;
  height: 46%;
  background: var(--black);
}

.sleeve-left {
  left: 0;
  clip-path: polygon(66% 0, 100% 10%, 58% 100%, 12% 94%);
}

.sleeve-right {
  right: 0;
  clip-path: polygon(0 10%, 34% 0, 88% 94%, 42% 100%);
}

.fashion-shoe {
  position: absolute;
  bottom: 0;
  width: 24%;
  height: 19%;
  border-bottom: 15px solid var(--black);
}

.shoe-left {
  left: 23%;
  border-left: 13px solid var(--paper);
}

.shoe-right {
  right: 23%;
  border-right: 13px solid var(--paper);
}

.look-drape .fashion-garment {
  width: 112%;
  height: 66%;
  background: var(--white);
  clip-path: polygon(31% 0, 71% 0, 100% 100%, 0 100%, 18% 48%);
}

.look-drape .fashion-garment::after {
  left: 27%;
  background: var(--oxblood);
  transform: rotate(14deg);
}

.look-drape .fashion-sleeve {
  background: var(--white);
}

.look-monochrome .fashion-garment {
  width: 82%;
  height: 70%;
  background: var(--black);
  clip-path: polygon(12% 0, 88% 0, 74% 100%, 26% 100%);
}

.look-monochrome .fashion-sleeve {
  height: 55%;
  background: rgba(242, 240, 233, 0.72);
}

.look-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 90px);
  border-left: 1px solid rgba(242, 240, 233, 0.42);
}

.look-number {
  margin: 0 0 28px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
}

.look-details h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.86;
}

.look-details > p:not(.look-number) {
  max-width: 470px;
  margin: 34px 0;
  color: rgba(242, 240, 233, 0.7);
  font-family: var(--serif);
  font-size: 18px;
}

.look-details dl {
  margin: auto 0 0;
  border-top: 1px solid rgba(242, 240, 233, 0.42);
}

.look-details dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 240, 233, 0.2);
  font-size: 10px;
  text-transform: uppercase;
}

.look-details dt {
  color: rgba(242, 240, 233, 0.5);
}

.look-details dd {
  margin: 0;
}

.swatches {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 130px);
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 11vw, 160px);
}

.swatches-copy > p:last-child {
  max-width: 480px;
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 18px;
}

.fabric-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: end;
  min-width: 0;
  border: 1px solid var(--black);
}

.fabric {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 10px;
  border-right: 1px solid var(--black);
}

.fabric:last-child {
  border-right: 0;
}

.fabric span,
.fabric small {
  font-size: 8px;
  font-weight: 700;
}

.fabric strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.fabric-black {
  color: var(--white);
  background: var(--black);
}

.fabric-oxblood {
  color: var(--white);
  background: var(--oxblood);
}

.fabric-sage {
  background: var(--sage);
}

.fabric-ice {
  background: var(--ice);
}

.fabric-metal {
  color: var(--white);
  background: var(--metal);
}

.program {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 9vw, 150px);
  padding-top: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(90px, 12vw, 180px);
  color: var(--white);
  background: var(--oxblood);
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: grid;
  min-height: 128px;
  grid-template-columns: 42px 90px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(242, 240, 233, 0.38);
}

.program-list li:first-child {
  border-top: 1px solid rgba(242, 240, 233, 0.38);
}

.program-index {
  color: rgba(242, 240, 233, 0.48);
  font-size: 9px;
  font-weight: 700;
}

.program-list time {
  font-family: var(--display);
  font-size: 30px;
}

.program-list h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
}

.program-list p {
  margin: 0;
  color: rgba(242, 240, 233, 0.68);
  font-family: var(--serif);
}

.program-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(242, 240, 233, 0.48);
  border-radius: 50%;
  font-family: var(--display);
}

.venue {
  display: grid;
  min-height: 760px;
  grid-template-columns: 0.36fr minmax(300px, 0.96fr) minmax(250px, 0.68fr);
  align-items: center;
  gap: clamp(35px, 6vw, 100px);
  padding-top: 100px;
  padding-bottom: 100px;
}

.venue-monogram {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.7;
}

.venue-monogram i {
  width: 1px;
  height: 80px;
  margin: 18px 0;
  background: var(--black);
  transform: rotate(30deg);
}

.venue-copy address {
  margin: 34px 0 16px;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.venue-copy > p {
  max-width: 540px;
  font-family: var(--serif);
  font-size: 17px;
}

.venue-copy a {
  display: inline-block;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  text-underline-offset: 8px;
  text-transform: uppercase;
}

.venue-ticket {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 0.7;
  flex-direction: column;
  justify-content: space-between;
  padding: 11%;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--ice);
  box-shadow: 20px 20px 0 var(--black);
}

.venue-ticket::before,
.venue-ticket::after {
  position: absolute;
  top: 64%;
  width: 26px;
  height: 26px;
  content: "";
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
}

.venue-ticket::before {
  left: -14px;
}

.venue-ticket::after {
  right: -14px;
}

.venue-ticket small,
.venue-ticket span,
.venue-ticket i {
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.venue-ticket strong {
  font-family: var(--display);
  font-size: clamp(130px, 16vw, 230px);
  font-weight: 400;
  line-height: 0.7;
}

.venue-ticket span {
  padding-top: 18px;
  border-top: 1px solid var(--black);
}

.venue-ticket i {
  position: absolute;
  right: 8%;
  top: 9%;
  writing-mode: vertical-rl;
}

.notes {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 150px);
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(86px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

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

.notes li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.notes li:first-child {
  border-top: 1px solid var(--line);
}

.notes li > span {
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 700;
}

.notes li p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
}

.notes li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-family: var(--editorial);
  font-size: 10px;
  text-transform: uppercase;
}

.rsvp {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
  padding-top: clamp(92px, 12vw, 180px);
  padding-bottom: clamp(92px, 12vw, 180px);
  color: var(--white);
  background: var(--black);
}

.rsvp-heading .kicker {
  color: var(--signal);
}

.rsvp-heading h2 {
  font-style: italic;
}

.rsvp-heading > p:last-child {
  max-width: 420px;
  margin-top: 32px;
  color: rgba(242, 240, 233, 0.66);
  font-family: var(--serif);
  font-size: 18px;
}

.rsvp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  gap: 32px 26px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(242, 240, 233, 0.6);
  border-radius: 0;
  background: transparent;
}

.field select {
  color-scheme: dark;
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(242, 240, 233, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-width: 3px;
  border-bottom-color: var(--signal);
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-row label {
  position: relative;
  margin: 0;
}

.choice-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-row span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(242, 240, 233, 0.68);
  cursor: pointer;
}

.choice-row input:checked + span {
  color: var(--black);
  background: var(--signal);
}

.choice-row input:focus-visible + span {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.submit-button {
  display: flex;
  min-height: 66px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--black);
  border: 1px solid var(--signal);
  border-radius: 0;
  background: var(--signal);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-button:hover {
  color: var(--white);
  background: transparent;
}

.submit-button i {
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
}

.form-status {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: -14px 0 0;
  color: var(--signal);
}

.site-footer {
  display: flex;
  min-height: 210px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 70px;
  padding-bottom: 46px;
  color: var(--black);
  background: var(--ice);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 60px);
  font-weight: 400;
}

.site-footer i {
  color: var(--oxblood);
  font-style: normal;
}

.site-footer a {
  text-underline-offset: 7px;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 0.16fr minmax(0, 0.82fr) minmax(350px, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(72px, 10vw, 112px);
  }

  .invitation {
    grid-template-columns: 0.16fr 0.94fr;
  }

  .invitation-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .look-panel {
    grid-template-columns: minmax(300px, 1fr) minmax(250px, 0.78fr);
  }

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

  .fabric-board {
    width: 100%;
  }

  .venue {
    grid-template-columns: 0.2fr minmax(280px, 1fr) minmax(230px, 0.62fr);
  }
}

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

  .site-nav {
    gap: 16px;
  }

  .site-nav a:not(.header-rsvp) {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 38px);
    max-height: none;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: minmax(330px, 0.9fr) minmax(280px, 0.7fr);
  }

  .hero-issue {
    grid-row: 1 / 3;
    padding: 90px 6px 32px;
  }

  .hero-issue strong {
    font-size: 74px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 94px 18px 30px;
  }

  .hero h1 {
    font-size: clamp(68px, 20vw, 96px);
  }

  .hero-date {
    margin-top: 26px;
    font-size: 9px;
  }

  .hero-look {
    min-height: 280px;
  }

  .hero-model {
    width: 34%;
    height: 87%;
  }

  .hero-model-right {
    height: 78%;
  }

  .hero-look > p {
    font-size: 19px;
  }

  .hero-note {
    display: none;
  }

  .invitation,
  .lookbook,
  .swatches,
  .program,
  .venue,
  .notes,
  .rsvp,
  .site-footer {
    padding-inline: 20px;
  }

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

  .section-number {
    font-size: 72px;
  }

  .invitation-copy {
    grid-column: 1;
  }

  .invitation h2,
  .lookbook h2,
  .swatches h2,
  .program h2,
  .venue h2,
  .notes h2,
  .rsvp h2 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .lookbook-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .look-selector {
    grid-template-columns: 1fr;
  }

  .look-tab {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 240, 233, 0.32);
  }

  .look-tab:last-child {
    border-bottom: 0;
  }

  .look-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .look-figure {
    min-height: 560px;
  }

  .fashion-model {
    width: min(42%, 220px);
    min-height: 440px;
  }

  .look-details {
    min-height: 500px;
    padding: 50px 0;
    border-top: 1px solid rgba(242, 240, 233, 0.42);
    border-left: 0;
  }

  .look-details dl {
    width: 100%;
  }

  .fabric-board {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .fabric {
    min-height: 280px;
  }

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

  .program-list li {
    grid-template-columns: 34px 68px minmax(0, 1fr);
    gap: 10px;
  }

  .program-list time {
    font-size: 25px;
  }

  .program-mark {
    display: none;
  }

  .program-list p {
    font-size: 14px;
  }

  .venue {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 90px;
  }

  .venue-monogram {
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 84px;
  }

  .venue-monogram i {
    width: 64px;
    height: 1px;
    margin: 0 18px;
  }

  .venue-ticket {
    width: calc(100% - 20px);
    max-width: 360px;
  }

  .notes li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

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

  .field,
  .field-full {
    grid-column: 1;
  }

  .site-footer {
    min-height: 250px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

@media (max-width: 390px) {
  .hero {
    grid-template-rows: minmax(320px, 0.85fr) minmax(260px, 0.65fr);
  }

  .hero-copy {
    padding-inline: 15px;
  }

  .hero h1 {
    font-size: 19vw;
  }

  .hero-look > p {
    font-size: 17px;
  }

  .look-figure {
    min-height: 500px;
  }

  .fashion-model {
    min-height: 395px;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .program-list li {
    grid-template-columns: 31px 62px minmax(0, 1fr);
  }

  .program-list h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
