/* House of New World: MAISON
   Plaster ground, Caslon letter, one night band.
   Palette sampled from the house's own material: the night band is the shadow of
   monaco-night.jpg, the single accent is the caption band of the Host 001 invitation. */

:root {
  --ground: #ECE9E3;      /* plaster */
  --ground-2: #E3DFD7;    /* deeper plaster, for the plans */
  --ink: #191713;
  --stone: #625B52;       /* secondary text, AA on both grounds */
  --rule: #CBC4B9;
  --night: #090907;       /* sampled from the photograph's shadows */
  --moon: #EAE6DE;
  --moon-2: #A9A298;
  --invite: #A89580;      /* sampled from the invitation card */

  --margin: clamp(20px, 4.45vw, 64px);
  --gap: clamp(12px, 1.67vw, 24px);
  --header: 64px;

  --display: "Libre Caslon Display", "Big Caslon", "Adobe Caslon Pro", "Baskerville", Georgia, "Times New Roman", serif;
  --serif: "Libre Caslon Text", "Adobe Caslon Pro", "Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Libre Franklin", "Franklin Gothic Book", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .1, 1);
}

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

html {
  background: var(--ground);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--header);
}
body {
  margin: 0;
  background: var(--ground);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
h1, h2, h3, h4, h5 { font-weight: 400; margin: 0; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { text-decoration-thickness: 2px; }

::selection { background: var(--ink); color: var(--ground); }

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.nowrap { white-space: nowrap; }
.reg { font-size: .56em; vertical-align: .5em; line-height: 0; margin-left: .05em; }

.skip {
  position: absolute; left: var(--margin); top: 8px; z-index: 100;
  padding: 12px 16px; background: var(--ink); color: var(--ground);
  font-family: var(--sans); font-size: 14px; text-decoration: none;
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

/* ---------- Masthead ---------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--ground);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: background-color .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.masthead__bar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header);
  padding-inline: var(--margin);
  max-width: 1760px; margin-inline: auto;
}
.mark {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .2em;
  margin-right: -.2em;
  text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.nav ul { display: flex; gap: clamp(20px, 2.6vw, 40px); }
.nav a,
.pointer,
.contact__links a,
.colophon__top {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .45s var(--ease);
}
.nav a {
  font-family: var(--sans); font-size: 13.5px; font-weight: 400; letter-spacing: .015em;
  display: inline-flex; align-items: center; min-height: 44px;
  background-position: 0 calc(50% + .9em);
}
.nav a:hover, .nav a:focus-visible,
.pointer:hover, .pointer:focus-visible,
.contact__links a:hover, .contact__links a:focus-visible,
.colophon__top:hover, .colophon__top:focus-visible { background-size: 100% 1px; }

html.over-night .masthead { background: var(--night); color: var(--moon); border-color: rgba(234, 230, 222, .14); }

/* Compact menu: a native disclosure, so it works without script */
.menu { display: none; }
.menu summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: flex-end;
  min-height: 44px; min-width: 64px;
  font-family: var(--sans); font-size: 14px; letter-spacing: .015em;
}
.menu summary::-webkit-details-marker { display: none; }
.menu__close { display: none; }
.menu[open] .menu__open { display: none; }
.menu[open] .menu__close { display: inline; }
.menu__panel {
  position: absolute; left: 0; right: 0; top: var(--header);
  background: var(--ground); color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px var(--margin) 28px;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
}
.menu__panel li { border-bottom: 1px solid var(--rule); }
.menu__panel a {
  display: flex; align-items: center; min-height: 64px;
  font-family: var(--display); font-size: 34px; line-height: 1.1; text-decoration: none;
}
.menu__note { margin-top: 24px; font-family: var(--sans); font-size: 13.5px; color: var(--stone); }

@media (max-width: 860px) {
  .nav { display: none; }
  .menu { display: block; }
}

/* ---------- Hero: the house, stated ---------- */

.hero {
  padding: clamp(22px, 4.2vh, 72px) var(--margin) clamp(26px, 4.4vh, 64px);
  max-width: 1760px; margin-inline: auto;
}
.hero__name {
  font-family: var(--display);
  font-size: min(calc((100vw - 2 * var(--margin)) / 7.86), 212px, 18.5vh);
  line-height: .9;
  letter-spacing: -.012em;
  white-space: nowrap;
  margin-left: -.035em;
}
.hero__rule {
  height: 1px; background: var(--ink);
  margin-top: clamp(18px, 3vh, 44px);
  transform-origin: 0 50%;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  margin-top: clamp(14px, 2.3vh, 30px);
  align-items: start;
}
.hero__line {
  grid-column: 1 / span 5;
  font-style: italic;
  font-size: clamp(22px, min(2.36vw, 3.9vh), 36px);
  line-height: 1.18;
  letter-spacing: -.005em;
}
.hero__support {
  grid-column: 9 / span 4;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone);
  padding-top: .35em;
  max-width: 24em;
}
.status {
  font-family: var(--sans); font-size: 11.5px; font-weight: 500; letter-spacing: .06em;
  padding: 3px 8px 2px;
  border: 1px solid currentColor;
  color: var(--ink);
  line-height: 1.3;
}
.status[hidden] { display: none; }

/* one orchestrated entrance: the name settles, the rule is drawn, the line follows */
@media (prefers-reduced-motion: no-preference) {
  .hero__name { animation: settle 1.5s var(--ease) both; }
  .hero__rule { animation: draw 1.6s .25s var(--ease) both; }
  .hero__line, .hero__support { animation: appear 1.2s var(--ease) both; }
  .hero__line { animation-delay: .55s; }
  .hero__support { animation-delay: .7s; }
}
@keyframes settle { from { opacity: 0; transform: translateY(.1em); } to { opacity: 1; transform: none; } }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes appear { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); row-gap: 10px; }
  .hero__line, .hero__support { grid-column: 1 / -1; }
  .hero__support { max-width: 30em; padding-top: 0; }
}
@media (max-width: 700px) {
  .hero { padding-top: 18px; padding-bottom: 26px; }
  .hero__name {
    font-size: min(calc((100vw - 2 * var(--margin)) / 4.42), 11vh);
    line-height: .94;
    white-space: normal;
  }
  .hero__rule { margin-top: 16px; }
  .hero__line { font-size: 23px; }
  .hero__support { font-size: 15px; }
}

/* ---------- The night band ---------- */

.night {
  position: relative;
  background: var(--night);
  color: var(--moon);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(30px, 4.8vh, 88px) 0 clamp(64px, 10vh, 120px);
  min-height: clamp(720px, 100vh, 1040px);
  display: flex; flex-direction: column;
}
.night__inner { position: relative; z-index: 2; width: 100%; max-width: 1760px; margin-inline: auto; padding-inline: var(--margin); }
.night__kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .02em;
  color: var(--invite);
}
.status--night { color: var(--invite); }
.night__title {
  font-family: var(--display);
  font-size: clamp(54px, min(9.6vw, 13.6vh), 164px);
  line-height: .9;
  letter-spacing: -.012em;
  margin-top: clamp(12px, 2.2vh, 40px);
}
.night__title > span { display: block; }
.night__title-2 { padding-left: 1.9em; }
.night__dateline {
  margin-top: clamp(12px, 2.4vh, 36px);
  font-style: italic;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.2;
}
.night__copy { margin-top: auto; padding-top: 56px; }
.night__copy > * { max-width: 30rem; }
.night__body { font-size: 1.0625rem; line-height: 1.62; color: var(--moon); }
.night__tag {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(168, 149, 128, .5);
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .02em;
  color: var(--invite);
}

.night__plate {
  position: absolute; z-index: 1;
  top: 0; right: 0; bottom: 0;
  width: 58%;
}
.night__plate img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 58%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 16%, #000 38%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 16%, #000 38%);
}
/* the lights of the bay come up once, when the band is first seen */
html.js .night__plate img { filter: brightness(.42); transition: filter 2.6s .15s var(--ease); }
html.js .night.is-in .night__plate img { filter: none; }

@media (max-width: 860px) {
  .night { min-height: 0; padding: 28px 0 56px; display: block; }
  .night__title { font-size: min(calc((100vw - 2 * var(--margin)) / 4.35), 124px, 10.6vh); margin-top: 12px; }
  .night__title-2 { padding-left: 0; }
  .night__dateline { font-size: 21px; margin-top: 12px; }
  .night__plate {
    position: relative;
    width: auto; margin: 36px 0 0;
  }
  .night__plate img {
    height: auto; aspect-ratio: 390 / 440;
    object-position: 50% 100%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 72%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 72%, transparent 100%);
  }
  .night__copy { margin-top: -24px; padding-top: 0; }
}

/* ---------- Section titles ---------- */

.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.05;
  letter-spacing: -.005em;
}

/* ---------- The house ---------- */

.house {
  padding: clamp(88px, 12vw, 176px) var(--margin) clamp(80px, 10vw, 152px);
  max-width: 1760px; margin-inline: auto;
}
.house .section-title { margin-bottom: clamp(36px, 4.5vw, 64px); }
.disciplines { border-top: 1px solid var(--ink); }
.disciplines li {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: baseline;
  padding: clamp(22px, 2.4vw, 34px) 0 clamp(24px, 2.6vw, 38px);
  border-bottom: 1px solid var(--rule);
}
.disciplines h3 {
  grid-column: 1 / span 5;
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -.01em;
}
.disciplines p { grid-column: 6 / span 4; max-width: 28em; }
.pointer {
  grid-column: 10 / span 3; justify-self: end;
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .015em;
  display: inline-flex; align-items: center; min-height: 44px;
  background-position: 0 calc(50% + .9em);
}
.pointer, .contact__links a, .colophon__top { background-image: linear-gradient(var(--rule), var(--rule)), linear-gradient(currentColor, currentColor); background-size: 100% 1px, 0% 1px; background-position: 0 calc(50% + .9em), 0 calc(50% + .9em); }
.contact__links a { background-position: 0 calc(50% + .75em), 0 calc(50% + .75em); }
.pointer:hover, .pointer:focus-visible, .contact__links a:hover, .contact__links a:focus-visible, .colophon__top:hover, .colophon__top:focus-visible { background-size: 100% 1px, 100% 1px; }
.pointer--quiet { color: var(--stone); background: none; }

@media (max-width: 860px) {
  .disciplines li { grid-template-columns: minmax(0, 1fr); row-gap: 10px; }
  .disciplines h3, .disciplines p, .pointer { grid-column: 1 / -1; }
  .pointer { justify-self: start; margin-top: -4px; }
}

/* ---------- The worlds ---------- */

.worlds {
  padding: 0 var(--margin) clamp(96px, 12vw, 184px);
  max-width: 1760px; margin-inline: auto;
}
.worlds > .section-title {
  padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid var(--ink);
  margin-bottom: clamp(56px, 7vw, 104px);
}

.maison__name {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 1.02;
  margin-right: -.1em;
}
.maison__desc {
  margin-top: clamp(20px, 2.2vw, 32px);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  max-width: 26em;
  text-wrap: pretty;
}

.facts { margin-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--rule); }
.facts > div {
  display: grid; grid-template-columns: 10.5rem minmax(0, 1fr); column-gap: var(--gap);
  align-items: baseline;
  padding: 11px 0 12px;
  border-bottom: 1px solid var(--rule);
}
.facts dt { font-family: var(--sans); font-size: 13px; letter-spacing: .015em; color: var(--stone); }
.facts dd { margin: 0; font-size: 1.0625rem; min-width: 0; overflow-wrap: anywhere; }
.facts a { display: inline-block; padding-block: 10px; margin-block: -10px; }

/* Synotacy */
.maison--synotacy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: clamp(40px, 4.5vw, 64px);
}
.maison--synotacy .maison__head { grid-column: 7 / span 6; grid-row: 1; }
.maison--synotacy .maison__lead { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.maison__lead { display: flex; flex-direction: column; }
.maison__frame { position: relative; flex: 1 1 auto; min-height: 520px; overflow: hidden; }
.maison__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.maison__pair {
  grid-column: 7 / span 6; grid-row: 2; align-self: end;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--gap);
}
.maison__pair img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.maison figcaption,
.hang figcaption {
  margin-top: 12px;
  font-family: var(--sans); font-size: 13px; line-height: 1.45; letter-spacing: .01em;
  color: var(--stone);
}

@media (max-width: 860px) {
  .maison--synotacy { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
  .maison--synotacy .maison__head,
  .maison--synotacy .maison__lead,
  .maison__pair { grid-column: 1 / -1; grid-row: auto; }
  .maison__lead { margin-inline: calc(-1 * var(--margin)); }
  .maison__frame { flex: none; min-height: 0; aspect-ratio: 4 / 5; }
  .maison__frame img { object-position: 50% 40%; }
  .maison__lead figcaption { padding-inline: var(--margin); }
  .maison__pair { margin-top: -8px; }
  .facts > div { grid-template-columns: 7.75rem minmax(0, 1fr); }
}

/* New World Visions */
.maison--nwv { margin-top: clamp(120px, 14vw, 216px); }
.maison--nwv .maison__head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid var(--ink);
}
.maison--nwv .maison__name { grid-column: 1 / -1; }
.maison--nwv .maison__desc { grid-column: 1 / span 6; }
.maison--nwv .facts { grid-column: 8 / span 5; margin-top: clamp(20px, 2.2vw, 32px); }
.maison--synotacy .maison__head { padding-top: clamp(22px, 2.4vw, 34px); border-top: 1px solid var(--ink); }

.hang {
  display: flex; align-items: flex-start;
  gap: var(--gap);
  margin-top: clamp(56px, 6.5vw, 96px);
}
.hang figure { flex: var(--ar) 1 0; min-width: 0; }
.hang img { width: 100%; height: auto; aspect-ratio: var(--ar); object-fit: cover; object-position: 50% 0; }
.hang__who { display: block; font-family: var(--serif); font-size: 16px; line-height: 1.35; color: var(--ink); letter-spacing: 0; }
.hang__what { display: block; }
.hang figure { overflow: hidden; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hang img { transition: transform 1.1s var(--ease); }
  .hang figure:hover img { transform: scale(1.025); }
}

@media (max-width: 860px) {
  .maison--nwv .maison__head { grid-template-columns: minmax(0, 1fr); }
  .maison--nwv .maison__desc, .maison--nwv .facts { grid-column: 1 / -1; }
  .hang { flex-wrap: wrap; row-gap: 28px; }
  .hang figure { flex: var(--ar) 1 calc(var(--ar) * 55%); }
  .hang figure.hang__lead { flex-basis: 100%; }
}

/* Roster: typeset, not a logo wall */
.roster {
  margin-top: clamp(88px, 10vw, 152px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: 40px;
  padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid var(--ink);
}
.roster__title {
  grid-column: 1 / span 3;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
}
.roster__group { grid-column: span 3; }
.roster h5 {
  font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: .015em;
  color: var(--stone);
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.roster li {
  font-family: var(--display);
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.16;
  padding: 3px 0 6px;
  text-wrap: balance;
}
.roster__note {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .015em;
  color: var(--stone);
  white-space: nowrap;
  margin-left: .35em;
  vertical-align: .55em;
}

@media (max-width: 1100px) and (min-width: 861px) {
  .roster__title { grid-column: 1 / -1; }
  .roster__group { grid-column: span 4; }
}
@media (max-width: 860px) {
  .roster { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
  .roster__title, .roster__group { grid-column: 1 / -1; }
}

/* ---------- Plans ---------- */

.plans {
  background: var(--ground-2);
  padding: clamp(88px, 11vw, 168px) var(--margin);
}
.plans > * { max-width: calc(1760px - 2 * var(--margin)); margin-inline: auto; }
.plans__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.9vw, 76px);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.plans__title { padding-right: 20%; }
.ledger { margin-top: clamp(48px, 6vw, 88px); border-top: 1px solid var(--ink); }
.ledger li {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: baseline;
  padding: clamp(20px, 2.2vw, 30px) 0 clamp(22px, 2.4vw, 34px);
  border-bottom: 1px solid var(--rule);
}
.ledger__when { grid-column: 1 / span 3; font-family: var(--sans); font-size: 13.5px; letter-spacing: .015em; color: var(--stone); }
.ledger h3 { grid-column: 4 / span 4; font-family: var(--display); font-size: clamp(30px, 3vw, 44px); line-height: 1.05; }
.ledger__what { grid-column: 8 / span 5; max-width: 30em; }

@media (max-width: 860px) {
  .plans__title { padding-right: 0; }
  .ledger li { grid-template-columns: minmax(0, 1fr); row-gap: 8px; }
  .ledger__when, .ledger h3, .ledger__what { grid-column: 1 / -1; }
}

/* ---------- Contact ---------- */

.contact {
  padding: clamp(88px, 11vw, 168px) var(--margin) clamp(72px, 8vw, 120px);
  max-width: 1760px; margin-inline: auto;
}
.contact__label {
  margin-top: clamp(40px, 5vw, 72px);
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .015em; color: var(--stone);
}
.contact__mail {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: min(calc((100vw - 2 * var(--margin)) / 10.5), 96px);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
  overflow-wrap: anywhere;
}
.contact__mail:hover { text-decoration-thickness: 2px; }
.contact__links {
  margin-top: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--gap);
  border-top: 1px solid var(--rule);
}
.contact__links li { padding-top: 16px; display: grid; gap: 2px; }
.contact__links span { font-family: var(--sans); font-size: 13px; letter-spacing: .015em; color: var(--stone); }
.contact__links a {
  justify-self: start;
  font-size: clamp(19px, 1.6vw, 23px);
  display: inline-flex; align-items: center; min-height: 44px;
  background-position: 0 calc(50% + .75em);
}

@media (max-width: 860px) {
  .contact__links { grid-template-columns: minmax(0, 1fr); border-top: 0; }
  .contact__links li { border-top: 1px solid var(--rule); padding: 14px 0 6px; }
}

/* ---------- Colophon ---------- */

.colophon {
  max-width: calc(1760px - 2 * var(--margin));
  margin: 0 var(--margin);
  padding: 26px 0 40px;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: baseline;
  font-family: var(--sans); font-size: 13px; letter-spacing: .015em;
  color: var(--stone);
}
@media (min-width: 1888px) { .colophon { margin-inline: auto; } }
.colophon__name { grid-column: 1 / span 4; font-family: var(--display); font-size: 24px; letter-spacing: 0; color: var(--ink); }
.colophon__line { grid-column: 5 / span 3; }
.colophon__place { grid-column: 8 / span 3; }
.colophon__top {
  grid-column: 11 / span 2; justify-self: end;
  color: var(--ink);
  display: inline-flex; align-items: center; min-height: 44px;
  background-position: 0 calc(50% + .9em);
}

@media (max-width: 860px) {
  .colophon { grid-template-columns: minmax(0, 1fr); row-gap: 6px; padding-bottom: 28px; }
  .colophon > * { grid-column: 1 / -1 !important; justify-self: start !important; }
  .colophon__name { margin-bottom: 6px; }
  .colophon__top { margin-top: 10px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js .night__plate img { filter: none; }
}

/* The status word leads the dateline in the invitation's taupe: the most legible signal on the band
   (21-32px italic) instead of an 11.5px outlined label. Taupe on the night ground is 6.6:1, AA at any size. */
.night__when { color: var(--invite); }
.night__when[hidden] { display: none; }
/* never split the date across lines ("24 / September 2026"); break before it instead */
.night__dateline time { white-space: nowrap; }
