:root {
  color-scheme: dark;
  --black: #030303;
  --black-soft: #080808;
  --panel: #0c0c0c;
  --text: #f4f0ea;
  --muted: #c9c1b6;
  --faint: #8b837b;
  --line: rgba(244, 240, 234, 0.23);
  --cream: #ede7dc;
  --cream-dark: #d7ccbd;
  --red: #c9391e;
  --red-deep: #8d1c11;
  --orange: #ee4a24;
  --font-condensed: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-display: Impact, "Arial Black", var(--font-condensed);
  --font-serif: Georgia, "Times New Roman", serif;
  --radius: 2px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-condensed);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(238, 74, 36, 0.85);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr minmax(120px, 190px);
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 3.8vw, 52px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2));
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(244, 240, 234, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  text-transform: uppercase;
  line-height: 1;
}

.brand-mark {
  display: block;
  color: #f6f3ef;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 4.35rem);
  letter-spacing: 0.08em;
  filter: blur(6px);
  opacity: 0.86;
  transform: skew(-4deg);
  user-select: none;
}

.brand-sub {
  padding-left: 18px;
  color: rgba(244, 240, 234, 0.66);
  font-size: 0.69rem;
  letter-spacing: 0.72em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link,
.language-switch {
  position: relative;
  padding: 9px 0;
  color: rgba(244, 240, 234, 0.9);
  transition: color 180ms ease;
}

.nav-link::after,
.language-switch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.language-switch:hover,
.language-switch:focus-visible {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.language-switch:hover::after,
.language-switch:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(244, 240, 234, 0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: clamp(524px, 49.7vw, 700px);
  display: grid;
  grid-template-columns: 38% 1fr 16%;
  align-items: end;
  border-bottom: 1px solid rgba(244, 240, 234, 0.22);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(203, 54, 23, 0.28), transparent 24%),
    linear-gradient(90deg, #000 0 44%, #111 44% 84%, #050505 84% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0 33%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 24%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  padding: calc(var(--header-height) + 28px) 20px 34px clamp(24px, 4vw, 54px);
  max-width: 500px;
}

.hero-copy h1 {
  margin: 0 0 26px;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 6px 0 rgba(255, 255, 255, 0.12);
}

.hero-copy h1 span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8.6vw, 7.5rem);
}

.hero-copy h1 em {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.6vw, 5.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.hero-copy p {
  max-width: 350px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.45;
}

.text-link,
.solid-button,
.date-card-action,
.newsletter-field button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.text-link svg,
.solid-button svg,
.date-card-action svg,
.newsletter-field button svg {
  width: 34px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  transition: transform 180ms ease;
}

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}

.text-link:hover svg,
.text-link:focus-visible svg,
.solid-button:hover svg,
.solid-button:focus-visible svg,
.date-card-action:hover svg,
.date-card-action:focus-visible svg,
.newsletter-field button:hover svg,
.newsletter-field button:focus-visible svg {
  transform: translateX(5px);
}

.hero-media {
  position: relative;
  z-index: 0;
  grid-column: 2 / 3;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 22%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 33%;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 700ms ease;
}

.hero-media:hover img {
  transform: scale(1.025);
}

.orbit-badge {
  position: absolute;
  z-index: 3;
  left: min(33vw, 410px);
  bottom: 34px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.orbit-badge span {
  position: absolute;
  inset: 0;
  font-size: 0;
  animation: rotateBadge 18s linear infinite;
}

.orbit-badge::before,
.orbit-badge::after {
  position: absolute;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  text-align: center;
  color: var(--orange);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.orbit-badge::before {
  content: "Mode · Art";
  top: 20px;
  transform: rotate(22deg);
}

.orbit-badge::after {
  content: "Musique · Culture";
  bottom: 20px;
  transform: rotate(18deg);
}

.orbit-badge strong {
  color: var(--orange);
  font-size: 3.9rem;
  line-height: 1;
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}

.date-card {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 3vw, 54px);
  bottom: 0;
  width: min(124px, 80%);
  margin: 0;
  padding: 18px 14px 14px;
  background: var(--cream);
  color: #111;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.date-card p {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 900;
}

.date-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.62rem;
  font-weight: 400;
  line-height: 0.82;
}

.date-card span {
  display: block;
  margin: 7px 0;
  font-family: var(--font-serif);
  font-size: 1.72rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.date-card small {
  display: block;
  margin-bottom: 18px;
  color: #6a6259;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.date-card-action {
  width: 100%;
  min-height: 34px;
  gap: 12px;
  color: #111;
  font-size: 0.78rem;
  padding: 0;
}

.events-collection {
  display: grid;
  grid-template-columns: 33.2% 38.2% 28.6%;
  min-height: 360px;
  border-bottom: 1px solid rgba(244, 240, 234, 0.22);
}

.events-panel {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #070707, #0e0e0e);
  border-right: 1px solid rgba(244, 240, 234, 0.18);
  padding: 23px clamp(22px, 2.4vw, 34px) 14px;
}

.events-panel h2,
.section-heading h2,
.press-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.events-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.events-panel h2 span {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.event-list {
  display: grid;
}

.event-item {
  border-bottom: 1px solid rgba(244, 240, 234, 0.18);
}

.event-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 26px;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.event-trigger:hover .event-main strong,
.event-trigger:focus-visible .event-main strong,
.event-trigger[aria-expanded="true"] .event-main strong {
  color: #fff;
}

.event-date {
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 234, 0.38);
  color: var(--text);
}

.event-date strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 0.9;
}

.event-date small {
  display: block;
  margin-top: -7px;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.event-main strong {
  display: block;
  max-width: 200px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.17rem;
  font-weight: 400;
  line-height: 1.03;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.event-main small {
  display: block;
  margin-top: 5px;
  color: var(--faint);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-plus {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.event-plus::before,
.event-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.event-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.event-trigger[aria-expanded="true"] .event-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.event-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.event-details p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: rgba(244, 240, 234, 0.68);
  font-size: 0.94rem;
  line-height: 1.42;
}

.event-item.is-open .event-details {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
}

.event-link {
  margin-top: auto;
  align-self: flex-start;
  gap: 24px;
  font-size: 0.8rem;
  min-height: 38px;
}

.collection-card {
  position: relative;
  min-height: 357px;
  overflow: hidden;
  isolation: isolate;
  background: #d9d3c9;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.collection-card::before {
  content: none;
}

.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 357px;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms ease, filter 250ms ease;
}

.collection-card:hover img,
.collection-card:focus-within img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.collection-rail {
  position: absolute;
  z-index: 3;
  left: 22px;
  top: 50%;
  color: #292522;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  text-transform: uppercase;
  font-size: 0.93rem;
  letter-spacing: 0.09em;
  opacity: 0;
}

.collection-copy {
  position: absolute;
  z-index: 4;
  left: 43%;
  right: auto;
  bottom: 48px;
  width: 184px;
  height: 48px;
  color: transparent;
}

.collection-copy h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.collection-copy p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.solid-button {
  min-width: 190px;
  min-height: 48px;
  padding: 0 20px;
  background: var(--cream);
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.solid-button:hover,
.solid-button:focus-visible {
  transform: translateY(-2px);
  background: #fff;
}

.collection-button {
  width: 100%;
  min-width: 0;
  height: 100%;
  opacity: 0.01;
}

.collection-button:hover,
.collection-button:focus-visible {
  opacity: 0.18;
}

.ink-panel {
  min-height: 357px;
  overflow: hidden;
  background: #dad4cc;
}

.ink-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 650ms ease;
}

.ink-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ink-panel:hover img {
  transform: scale(1.04);
}

.creators-press {
  display: grid;
  grid-template-columns: 52.4% 47.6%;
  min-height: 275px;
  border-bottom: 1px solid rgba(244, 240, 234, 0.22);
}

.creators-panel {
  padding: 28px clamp(20px, 2.4vw, 32px) 12px;
  border-right: 1px solid rgba(244, 240, 234, 0.28);
  background: #050505;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading a {
  width: 38px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: color 180ms ease, transform 180ms ease;
}

.section-heading svg {
  width: 34px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}

.section-heading a:hover,
.section-heading a:focus-visible {
  color: var(--orange);
  transform: translateX(4px);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.creator-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  background: #151515;
  outline: 0;
  cursor: pointer;
}

.creator-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.creator-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 450ms ease, filter 250ms ease;
}

.creator-card:hover img,
.creator-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.07);
}

.creator-card div {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 13px;
  text-align: center;
  text-transform: uppercase;
}

.creator-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1;
}

.creator-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
}

.press-panel {
  position: relative;
  padding: 30px clamp(26px, 4.2vw, 54px) 14px;
  background:
    radial-gradient(circle at 100% 10%, rgba(255, 255, 255, 0.05), transparent 32%),
    #050505;
}

.press-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0.28em;
}

.quote-mark {
  display: block;
  height: 21px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 4.6rem;
  line-height: 0.42;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 8px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 0 16px;
  border-left: 1px solid rgba(244, 240, 234, 0.26);
}

.quote-grid blockquote:first-child {
  padding-left: 0;
  border-left: 0;
}

.quote-grid p {
  margin: 0 0 11px;
  color: var(--text);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.24;
}

.quote-grid cite {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: italic;
}

.quote-grid cite::before {
  content: "• ";
}

.press-logos {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  color: #fff;
}

.press-logos span:first-child {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.press-logos span:nth-child(2) {
  font-family: Georgia, serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.press-logos span:nth-child(3) {
  font-family: Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 21% 39% 40%;
  align-items: center;
  min-height: 198px;
  height: auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(126, 20, 10, 0.18), rgba(179, 45, 22, 0.96) 45%, rgba(142, 28, 17, 0.96)),
    var(--red);
  border-bottom: 1px solid rgba(244, 240, 234, 0.18);
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.newsletter-art {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 178px;
  background-image: url("assets/newsletter-veil.png");
  background-size: cover;
  background-position: left center;
  mix-blend-mode: luminosity;
  opacity: 0.92;
}

.newsletter-title {
  position: relative;
  z-index: 2;
  padding: 22px 18px 22px 0;
}

.newsletter-title h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.88;
}

.newsletter-title span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.1vw, 4.85rem);
  letter-spacing: 0.02em;
}

.newsletter-title em {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 3.9vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 22px clamp(22px, 4vw, 52px) 22px 12px;
}

.newsletter-form h3 {
  margin: 0 0 7px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.newsletter-form p {
  margin: 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.38;
}

.newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  width: min(100%, 440px);
  border: 1px solid rgba(244, 240, 234, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-field input {
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
  font-size: 0.95rem;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-field input:focus {
  background: rgba(0, 0, 0, 0.12);
}

.newsletter-field button {
  min-height: 42px;
  gap: 14px;
  padding: 0 13px;
  background: var(--cream);
  color: #111;
  font-size: 0.78rem;
}

.newsletter-status {
  min-height: 18px;
  color: #fff;
  font-size: 0.84rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: clamp(30px, 6vw, 80px);
  padding: 22px clamp(24px, 4vw, 54px) 21px;
  background: #030303;
}

.brand-footer .brand-mark {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.footer-brand p {
  max-width: 300px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 22px;
}

.footer-columns nav,
.footer-columns address {
  display: grid;
  align-content: start;
  gap: 5px;
  font-style: normal;
}

.footer-columns h2 {
  margin: 0 0 4px;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.footer-columns a,
.footer-columns span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.74rem;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-columns address a,
.footer-columns address span {
  text-transform: none;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(720px, 92vh);
  overflow: auto;
  padding: 30px;
  background: var(--cream);
  color: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-kicker {
  margin: 0 0 8px;
  color: var(--red-deep);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.modal-card h2 {
  margin: 0 42px 22px 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #211b16;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-form label span {
  color: rgba(33, 27, 22, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.44);
  color: #111;
  padding: 13px 14px;
  outline: 0;
  resize: vertical;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.contact-form .solid-button {
  justify-self: start;
  margin-top: 4px;
  background: #111;
  color: var(--cream);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--red-deep);
  font-size: 0.88rem;
  text-transform: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 190px 1fr 145px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(330px, 42%) 1fr;
  }

  .date-card {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 138px;
  }

  .orbit-badge {
    left: 32%;
  }

  .events-collection {
    grid-template-columns: 40% 60%;
  }

  .ink-panel {
    display: none;
  }

  .creators-press {
    grid-template-columns: 1fr;
  }

  .creators-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 234, 0.22);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    min-height: var(--header-height);
    padding: 15px clamp(22px, 4vw, 34px);
  }

  .brand-mark {
    font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  }

  .brand-sub {
    padding-left: 12px;
    font-size: 0.6rem;
    letter-spacing: 0.56em;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: auto;
    right: clamp(18px, 4vw, 34px);
    z-index: 49;
    display: grid;
    width: min(320px, calc(100vw - 36px));
    gap: 0;
    padding: 15px 22px 22px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(244, 240, 234, 0.14);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
    font-size: 1rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(244, 240, 234, 0.1);
  }

  .header-actions {
    grid-column: 2;
  }

  .language-switch {
    display: none;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 14px 20px;
  }

  .brand-mark {
    font-size: 2.75rem;
  }

  .brand-sub {
    padding-left: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.54em;
  }

  .site-nav {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-copy {
    padding: 34px 28px 28px;
    max-width: none;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 430px;
  }

  .hero-copy h1 span {
    font-size: clamp(4.1rem, 13vw, 6.55rem);
  }

  .hero-copy h1 em {
    font-size: clamp(3rem, 10.5vw, 4.95rem);
  }

  .orbit-badge {
    left: auto;
    right: 22px;
    bottom: 410px;
    width: 108px;
    height: 108px;
  }

  .orbit-badge span {
    display: none;
  }

  .orbit-badge strong {
    font-size: 3.2rem;
  }

  .date-card {
    right: 18px;
    bottom: 24px;
  }

  .events-collection {
    grid-template-columns: 1fr;
  }

  .events-panel,
  .collection-card,
  .ink-panel {
    min-height: 340px;
  }

  .ink-panel {
    display: block;
    min-height: 220px;
  }

  .collection-copy {
    left: 20%;
  }

  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-grid blockquote,
  .quote-grid blockquote:first-child {
    padding: 0 0 0 16px;
    border-left: 1px solid rgba(244, 240, 234, 0.26);
  }

  .newsletter {
    grid-template-columns: 36% 64%;
    height: auto;
    min-height: 178px;
  }

  .newsletter-form {
    grid-column: 1 / -1;
    padding: 0 22px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding-inline: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
  }

  .hero-copy h1 span {
    font-size: clamp(3.85rem, 16vw, 4.8rem);
  }

  .hero-copy h1 em {
    font-size: clamp(2.75rem, 12.6vw, 3.5rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-link {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero-media {
    min-height: 365px;
  }

  .date-card {
    width: 122px;
    padding: 17px 13px 14px;
  }

  .date-card strong {
    font-size: 3.25rem;
  }

  .date-card span {
    font-size: 1.55rem;
  }

  .events-panel {
    padding: 24px 20px 22px;
  }

  .event-trigger {
    grid-template-columns: 46px 1fr 22px;
    gap: 13px;
  }

  .event-main strong {
    font-size: 1.05rem;
  }

  .collection-card img {
    object-position: 44% center;
  }

  .collection-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 54%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(2px);
    pointer-events: none;
  }

  .collection-rail {
    left: 13px;
  }

  .collection-copy {
    left: 16%;
    right: 5%;
    bottom: 24px;
    width: auto;
    height: auto;
    color: #fff;
    text-align: center;
  }

  .collection-copy h2 {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  }

  .collection-copy p {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1rem;
    margin: 7px 0 13px;
    text-transform: uppercase;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
  }

  .collection-button {
    width: min(100%, 210px);
    height: 44px;
    opacity: 1;
    margin-inline: auto;
  }

  .solid-button {
    min-width: 174px;
    gap: 14px;
    font-size: 0.78rem;
  }

  .creators-panel,
  .press-panel {
    padding: 26px 20px;
  }

  .creator-grid {
    gap: 6px;
  }

  .creator-card {
    min-height: 206px;
  }

  .creator-card img {
    min-height: 206px;
  }

  .press-panel h2 {
    letter-spacing: 0.14em;
  }

  .press-logos {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .newsletter-art {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    opacity: 0.45;
  }

  .newsletter-title {
    width: 100%;
    min-width: 0;
    padding: 28px 20px 10px;
  }

  .newsletter-title span {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .newsletter-title em {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
    white-space: normal;
  }

  .newsletter-form {
    width: 100%;
    min-width: 0;
    padding: 0 20px 26px;
  }

  .newsletter-field {
    grid-template-columns: 1fr;
  }

  .newsletter-field button {
    justify-content: space-between;
    padding-inline: 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-card {
    padding: 26px 20px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .footer-columns nav,
  .footer-columns address {
    gap: 8px;
  }

  .footer-columns a,
  .footer-columns span {
    font-size: 0.82rem;
  }
}

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