@font-face {
  font-family: "Cormorant Garamond Variable";
  src: url("../assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Variable";
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-soft: #171715;
  --paper: #f3f0e9;
  --paper-bright: #faf8f3;
  --paper-muted: #d8d2c7;
  --paper-deep: #e9e0d3;
  --accent: #e99a58;
  --accent-light: #f4b77f;
  --line-dark: rgb(255 255 255 / 18%);
  --line-light: rgb(10 10 10 / 17%);
  --font-display: "Cormorant Garamond Variable", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope Variable", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(4.5rem, 8vw, 7rem);
  --max-width: 92rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body:has(.site-header[data-menu-open]) {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max-width));
  margin-inline: auto;
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-index {
  color: #766f65;
}

.display-title {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.display-title em {
  color: var(--accent);
  font-weight: 450;
}

.display-copy {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1;
}

.lead {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button--accent {
  color: var(--ink);
  background: var(--accent);
}

.button--accent:hover {
  background: var(--accent-light);
}

.button--dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--accent);
}

.button--outline {
  border-color: var(--line-dark);
  color: var(--paper-bright);
}

.button--outline:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.text-link--light {
  color: var(--paper-bright);
}

/* Header */
.site-header,
.site-header *,
.site-footer,
.site-footer * {
  user-select: none;
  -webkit-user-select: none;
  caret-color: transparent;
  cursor: default;
}

.site-header a,
.site-header button,
.site-footer a {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 5.25rem;
  grid-template-columns: 11rem 1fr 11rem;
  align-items: center;
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: white;
  background: linear-gradient(180deg, rgb(0 0 0 / 38%), rgb(0 0 0 / 6%));
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header[data-scrolled],
.site-header[data-menu-open] {
  border-bottom-color: rgb(255 255 255 / 15%);
  background: rgb(11 10 10 / 78%);
  box-shadow: 0 8px 28px rgb(0 0 0 / 10%);
  backdrop-filter: blur(16px);
}

.site-header[data-menu-open] {
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.site-nav ul,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.header-social,
.footer-links a {
  position: relative;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-social {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.header-social:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.header-actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.language-picker {
  position: relative;
}

.language-picker__toggle {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.38rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  color: white;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-picker__toggle:hover,
.language-picker__toggle[aria-expanded="true"] {
  border-color: rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 10%);
}

.language-picker__flag {
  width: 1.15rem;
  height: 0.72rem;
  border: 1px solid rgb(255 255 255 / 35%);
  object-fit: cover;
  flex: none;
}

.language-picker__chevron {
  width: 0.4rem;
  height: 0.4rem;
  margin: -0.2rem 0 0 0.18rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.language-picker__toggle[aria-expanded="true"] .language-picker__chevron {
  transform: translateY(0.2rem) rotate(225deg);
}

.language-picker__menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.5rem);
  right: 0;
  width: max-content;
  min-width: 11rem;
  padding: 0.4rem;
  border: 1px solid rgb(255 255 255 / 16%);
  color: white;
  background: #1c1a18;
  box-shadow: 0 12px 28px rgb(0 0 0 / 28%);
}

.language-picker__menu[hidden] {
  display: none;
}

.language-picker__option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
}

.language-picker__option:not(:disabled):hover,
.language-picker__option:not(:disabled):focus-visible,
.language-picker__option[aria-current="true"] {
  color: var(--ink);
  background: var(--accent);
}

.language-picker__option:disabled {
  color: #a9a39b;
  cursor: not-allowed;
}

.language-picker__note {
  max-width: 13rem;
  margin: 0.35rem 0.5rem 0.25rem;
  color: #c7bfb5;
  font-size: 0.67rem;
  line-height: 1.4;
}

.header-social svg,
.footer-instagram svg {
  width: 1.15rem;
  height: 1.15rem;
}

.menu-toggle {
  display: none;
}

/* Shared hero */
.home-hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.home-hero__image,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 5 5 / 66%) 0%, rgb(5 5 5 / 26%) 58%, rgb(5 5 5 / 12%) 100%),
    linear-gradient(0deg, rgb(5 5 5 / 70%) 0%, transparent 62%);
}

.home-hero__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 10rem;
  padding-bottom: clamp(6rem, 12vh, 9rem);
}

.home-hero h1,
.page-hero h1 {
  max-width: 12ch;
  margin: 1.3rem 0 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8.2vw, 9.25rem);
  font-weight: 470;
  letter-spacing: -0.055em;
  line-height: 0.77;
}

.home-hero__intro {
  max-width: 34rem;
  margin: 0 0 2.5rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 3.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 3.5rem;
  background: var(--accent);
}

.page-hero {
  min-height: clamp(31rem, 66svh, 43rem);
  background: #171512;
  border-bottom: 1px solid #4a3b30;
}

.page-hero > img {
  width: 100%;
  object-position: center 42%;
}

.page-hero__shade {
  background: linear-gradient(0deg, rgb(12 10 9 / 92%) 0%, rgb(12 10 9 / 45%) 46%, rgb(12 10 9 / 19%) 100%);
}

.page-hero__content {
  min-height: clamp(31rem, 66svh, 43rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
}

.page-hero h1 {
  max-width: 10ch;
  margin-block: 1.5rem 1.25rem;
  font-size: clamp(3.8rem, 6vw, 6.6rem);
  line-height: 0.86;
}

.page-hero__intro {
  max-width: 29rem;
  margin: 0;
  color: #e0d7cc;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

/* Home */
.intro-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--paper);
}

.intro-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.intro-section__heading {
  grid-row: 1;
  grid-column: 2;
  align-self: end;
  margin-bottom: 1.5rem;
}

.intro-section__heading h2 {
  max-width: 16ch;
  margin: 1rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.1vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.intro-section__photo {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0;
  padding: clamp(0.5rem, 0.8vw, 0.8rem);
  background: var(--paper-bright);
  box-shadow: 0 16px 40px rgb(34 24 13 / 9%);
  transform: rotate(-0.8deg);
}

.intro-section__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.intro-section__photo figcaption {
  margin: 0.55rem 0.3rem 0.1rem;
  color: #665f55;
  font-size: 0.73rem;
}

.intro-section__copy {
  grid-row: 2;
  grid-column: 2;
  align-self: start;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 2px solid var(--accent);
}

.intro-section__copy p {
  max-width: 30rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.image-statement {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  background: var(--ink);
}

.image-statement > img {
  width: 100%;
  height: clamp(33rem, 58svh, 43rem);
  object-fit: cover;
  object-position: center 42%;
}

.image-statement::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 60%), transparent 48%);
  content: "";
}

.image-statement__caption {
  position: absolute;
  z-index: 1;
  bottom: clamp(2.5rem, 5vw, 5rem);
  left: var(--gutter);
  max-width: 34rem;
  margin: 0;
  color: white;
}

.image-statement__caption > p:last-child {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
}

.members-preview {
  padding-block: var(--section-y);
  background: var(--paper-deep);
}

.members-preview .display-title,
.instagram-section .display-title,
.press-teaser .display-title {
  font-size: clamp(2.8rem, 4.3vw, 5rem);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4rem 1.5rem;
}

.member-card {
  grid-column: span 3;
}

.member-card:first-child {
  grid-column: span 6;
}

.member-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.member-card:nth-child(5) {
  grid-column: 7 / span 4;
}

.member-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: #26231f;
}

.member-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 400ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.member-card:hover .member-card__image {
  filter: saturate(1);
  transform: scale(1.025);
}

.member-card__number {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.67rem;
  font-weight: 750;
}

.member-card__copy {
  padding-top: 1.5rem;
}

.member-card__copy h2 {
  margin: 0.35rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.member-card__origin,
.member-card__role {
  margin: 0;
  color: #777066;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-card__role {
  color: #a55f2a;
}

.member-card__copy > p:last-child {
  margin: 1.1rem 0 0;
  color: #514d47;
  font-size: 0.9rem;
}

.events-section,
.press-assets,
.event-archive {
  padding-block: var(--section-y);
  color: var(--paper-bright);
  background: var(--ink);
}

.section-heading--light .section-index {
  color: #9b9389;
}

.events-section {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.events-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: stretch;
  background: #1c1a18;
}

.events-feature__photo {
  position: relative;
  min-height: 29rem;
  margin: 0;
  overflow: hidden;
}

.events-feature__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-feature__photo figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.events-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 6rem);
}

.events-feature__content .section-index {
  color: var(--accent-light);
}

.events-feature__content h2 {
  max-width: 10ch;
  margin: 2rem 0 clamp(2rem, 4vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.events-feature__status {
  max-width: 28rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}

.events-feature__status .eyebrow {
  color: var(--accent-light);
}

.events-feature__status p:last-child {
  margin: 0.8rem 0 0;
  color: #ccc4b9;
}

.events-feature__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-list {
  border-top: 1px solid var(--line-dark);
}

.event-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.event-row__date {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.event-row__date strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
}

.event-row__date span {
  color: #aaa298;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-row__copy h3 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.event-row__copy > p:last-child {
  margin: 0;
  color: #aaa298;
}

/* Privacy-preserving Instagram embeds */
.instagram-section {
  padding-block: var(--section-y);
  color: var(--paper-bright);
  background: var(--ink-soft);
}

.instagram-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.instagram-section .section-index {
  color: #9b9389;
}

.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-profile-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.instagram-consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
}

.instagram-consent p {
  max-width: 48rem;
  margin: 0;
  color: #b8b0a6;
}

.instagram-consent[hidden],
.instagram-grid[hidden] {
  display: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.instagram-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: white;
}

.instagram-card:has(iframe.instagram-media) {
  padding-top: 39rem;
}

.instagram-card .instagram-media {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 39rem !important;
  margin: 0 !important;
  border: 0 !important;
  background: white;
}

.instagram-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-status {
  margin: 1rem 0 0;
  color: #9b9389;
  font-size: 0.78rem;
}

.press-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: var(--section-y);
}

.press-teaser__image {
  overflow: hidden;
}

.press-teaser__image img {
  width: 100%;
  height: auto;
}

.press-teaser__copy > p:not(.section-index) {
  max-width: 34rem;
  margin: 2.2rem 0 2.8rem;
}

/* Editorial pages */
.editorial,
.download-feature,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.3fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: var(--section-y);
}

.editorial__aside {
  padding-top: 0.45rem;
  border-top: 2px solid var(--accent);
}

.editorial__aside > p:last-child {
  margin-top: 2rem;
  color: #746e65;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.editorial__lead {
  max-width: 47rem;
  margin: 0;
  font-size: clamp(1.3rem, 1.75vw, 1.8rem);
  line-height: 1.5;
}

.prose-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.prose-columns p {
  margin: 0;
}

.about-live {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.6fr);
  min-height: 29rem;
  color: var(--paper-bright);
  background: var(--ink-soft);
}

.about-live__image {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
}

.about-live__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-live__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.about-live__copy .section-index {
  color: var(--accent-light);
}

.about-live__copy h2 {
  max-width: 10ch;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.8vw, 4.5rem);
  font-weight: 480;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.about-live__copy p:not(.section-index) {
  max-width: 34rem;
  color: #c8c0b6;
}

.about-live__copy .text-link {
  margin-top: 1.5rem;
}

.origin-story {
  display: grid;
  grid-template-columns: minmax(19rem, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-block: var(--section-y);
}

.origin-story__image {
  grid-row: 1;
  grid-column: 2;
  overflow: hidden;
}

.origin-story__image img {
  width: 100%;
  height: auto;
}

.origin-story__copy > p:not(.section-index) {
  margin: 1.6rem 0 2rem;
}

.origin-story__copy {
  grid-row: 1;
  grid-column: 1;
}

.origin-story .display-title {
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.origin-story .display-title em,
.download-feature .display-title em,
.event-program .display-title em,
.contact-grid .display-title em,
.contact-form-section .display-title em {
  color: #9a4a1c;
}

/* Members */
.members-directory {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.member-card--detailed {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line-light);
}

.member-card--detailed .member-card__copy h2 {
  max-width: 15ch;
  margin-block: 1.1rem 1.3rem;
  font-size: clamp(3rem, 4.6vw, 5.6rem);
  line-height: 0.91;
}

.member-card--detailed .member-card__copy > p:last-child {
  max-width: 45rem;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
  color: #3f3b36;
  font-size: 1rem;
}

/* Press */
.download-feature {
  grid-template-columns: 0.28fr minmax(20rem, 0.85fr) minmax(18rem, 0.48fr);
  align-items: start;
}

.download-feature__meta > p:last-child {
  margin-top: 2rem;
  color: #746e65;
}

.download-feature__copy .lead {
  margin-block: 2.2rem 2.8rem;
}

.download-feature__preview {
  position: relative;
  display: block;
  overflow: hidden;
}

.download-feature__preview img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
}

.download-feature__preview:hover img {
  transform: scale(1.025);
}

.download-feature__preview span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.asset-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--line-dark);
}

.asset-grid article {
  display: grid;
  grid-template-columns: minmax(5rem, 0.25fr) minmax(12rem, 0.8fr) minmax(15rem, 1.2fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  min-height: 8.5rem;
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line-dark);
}

.asset-grid article > span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 470;
  line-height: 1;
}

.asset-grid p {
  max-width: 32rem;
  margin: 0;
  color: #b8b0a6;
}

.asset-grid a {
  display: inline-block;
  justify-self: end;
  border-bottom: 1px solid var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Events */
.event-program {
  padding-block: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.event-program__header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.event-program__header .display-title {
  font-size: clamp(2.7rem, 4.3vw, 4.6rem);
}

.event-program .event-list {
  border-top-color: var(--line-light);
}

.event-program .event-row {
  border-bottom-color: var(--line-light);
}

.event-program .event-row__copy > p:last-child,
.event-program .event-row__date span {
  color: #716b62;
}

.event-program .button--outline {
  border-color: var(--line-light);
  color: var(--ink);
}

.event-empty-light {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: 0.5rem clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-left: 3px solid var(--accent);
  background: var(--paper-deep);
}

.event-empty-light .eyebrow {
  grid-column: 1 / -1;
  color: #766f65;
}

.event-empty-light h3 {
  grid-row: 2 / span 2;
  grid-column: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.6vw, 4.4rem);
  font-weight: 460;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.event-empty-light > p:not(.eyebrow) {
  grid-row: 2;
  grid-column: 2;
  margin: 0;
}

.event-empty-light .button-row {
  grid-row: 3;
  grid-column: 2;
  margin: 0;
}

.live-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3.5rem, 6vw, 6rem);
}

.live-gallery img {
  width: 100%;
  height: auto;
}

.live-gallery div {
  grid-column: 2;
  padding: 2rem 0 0 clamp(0rem, 3vw, 3rem);
}

.live-gallery div > p:not(.section-index) {
  max-width: 35rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.1;
}

.live-gallery .text-link {
  margin-top: 1.5rem;
}

/* Contact */
.contact-grid {
  grid-template-columns: minmax(20rem, 0.8fr) minmax(24rem, 1fr);
}

.contact-grid__intro > p:not(.section-index) {
  max-width: 37rem;
  margin-top: 1.5rem;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.contact-options {
  border-top: 1px solid var(--line-light);
}

.contact-options a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-light);
}

.contact-options span {
  grid-column: 1;
  color: #736c63;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-options strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  font-weight: 500;
  line-height: 1;
}

.contact-options i {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--accent);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-options a:hover i {
  transform: translate(0.25rem, -0.25rem);
}

.contact-form-section {
  color: var(--ink);
  background: #e7e0d6;
}

.contact-form-section__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(28rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(3rem, 6vw, 6rem);
}

.contact-form-section .display-title {
  font-size: clamp(2.5rem, 3.4vw, 3.8rem);
}

.contact-form-section__intro > p:last-child {
  max-width: 31rem;
  margin-top: 2.5rem;
  color: #504a43;
}

.contact-form-section__intro a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
  align-content: start;
}

.form-field {
  display: grid;
  gap: 0.7rem;
}

.form-field--wide,
.contact-form__actions {
  grid-column: 1 / -1;
}

.form-field label {
  color: #625b51;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid #9a9185;
  border-radius: 0;
  color: #504a43;
  background: transparent;
  font: inherit;
  opacity: 1;
  cursor: not-allowed;
}

.form-field textarea {
  min-height: 7rem;
  line-height: 1.6;
  resize: none;
}

.form-field select {
  appearance: none;
}

.contact-form__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-form__actions .button {
  border: 0;
  opacity: 0.55;
  cursor: not-allowed;
}

.contact-form__status {
  flex: 1 1 15rem;
  margin: 0;
  color: #5c554d;
  font-size: 0.82rem;
}

.contact-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.4fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-bottom: var(--section-y);
}

.contact-image img {
  width: 100%;
  max-height: 48rem;
  object-fit: cover;
  object-position: center 35%;
}

.contact-image p {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

/* Legal pages */
.legal-hero {
  padding: clamp(11rem, 18vw, 16rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  color: var(--paper-bright);
  background: var(--ink);
}

.legal-hero__inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.legal-hero h1 {
  max-width: 12ch;
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.legal-page {
  display: grid;
  grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding-block: var(--section-y);
}

.legal-page__aside {
  color: #766f65;
  font-size: 0.82rem;
}

.legal-page__content {
  max-width: 52rem;
}

.legal-page__content section + section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line-light);
}

.legal-page h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.legal-page h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1rem;
}

.legal-page p,
.legal-page ul {
  color: #514d47;
}

.legal-page address {
  font-style: normal;
}

.legal-page a {
  border-bottom: 1px solid currentColor;
}

.legal-note {
  padding: 1.25rem;
  border-left: 3px solid var(--accent);
  background: #e9e3d9;
}

/* Footer */
.site-footer {
  color: white;
  background: var(--ink);
}

.site-footer__base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding-block: 2.5rem;
}

.brand--footer {
  align-self: center;
}

.footer-meta {
  justify-self: end;
  margin: 0;
  color: #8f887f;
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.footer-instagram {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

@media (max-width: 70rem) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
  }

  .brand,
  .menu-toggle,
  .header-actions {
    position: relative;
    z-index: 2;
  }

  .header-social {
    display: inline-grid;
  }

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

  .menu-toggle {
    grid-row: 1;
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    border: 0;
    color: white;
    background: transparent;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    width: 1.75rem;
    gap: 0.4rem;
  }

  .menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: none;
    place-items: center;
    color: white;
    background: #11100f;
  }

  .site-header[data-menu-open] .site-nav {
    display: grid;
  }

  .site-header[data-menu-open] .menu-toggle__icon i:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .site-header[data-menu-open] .menu-toggle__icon i:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.4rem;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 8vw, 5rem);
    font-weight: 480;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav a::after {
    bottom: 0;
  }

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

  .intro-section__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
    column-gap: 2.5rem;
  }

  .member-card,
  .member-card:first-child,
  .member-card:nth-child(4),
  .member-card:nth-child(5) {
    grid-column: auto;
  }

  .member-card:last-child {
    grid-column: 1 / span 2;
    width: calc(50% - 0.75rem);
    justify-self: center;
  }

  .download-feature {
    grid-template-columns: 0.35fr 1fr;
  }

  .download-feature__preview {
    width: min(30rem, 70%);
    grid-column: 2;
  }

  .asset-grid article {
    grid-template-columns: minmax(5rem, 0.25fr) minmax(12rem, 1fr) minmax(15rem, 1fr);
  }

  .asset-grid a {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .event-empty-light {
    grid-template-columns: minmax(0, 1.1fr) minmax(14rem, 0.9fr);
  }

  .event-empty-light > p:not(.eyebrow),
  .event-empty-light .button-row {
    grid-column: 2;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1.25rem;
    --section-y: 5.5rem;
  }

  html {
    scroll-padding-top: 4.65rem;
  }

  .site-header {
    height: 4.65rem;
  }

  .brand img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .home-hero__content,
  .page-hero__content {
    padding-bottom: 5.5rem;
  }

  .page-hero,
  .page-hero__content {
    min-height: 33rem;
  }

  .page-hero > img {
    left: 0;
    width: 100%;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.75rem);
  }

  .home-hero__shade {
    background: linear-gradient(0deg, rgb(5 5 5 / 84%) 0%, rgb(5 5 5 / 22%) 88%);
  }

  .page-hero__shade {
    background: linear-gradient(0deg, rgb(16 14 12 / 95%) 0%, rgb(16 14 12 / 78%) 38%, rgb(16 14 12 / 26%) 100%);
  }

  .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 12vw, 5rem);
  }

  .scroll-cue {
    display: none;
  }

  .press-teaser,
  .editorial,
  .origin-story,
  .about-live,
  .contact-grid,
  .contact-form-section__inner,
  .contact-image,
  .legal-page {
    grid-template-columns: 1fr;
  }

  .instagram-section__header,
  .instagram-consent {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .form-field,
  .form-field--wide,
  .contact-form__actions {
    grid-column: 1;
  }

  .menu-toggle__label {
    display: none;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .intro-section__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .intro-section__heading {
    margin-bottom: 0;
  }

  .intro-section__heading h2 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .intro-section__photo {
    transform: rotate(-0.5deg);
  }

  .intro-section__copy {
    margin: 0;
    padding-left: 1.25rem;
  }

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

  .events-feature__photo {
    min-height: 22rem;
  }

  .events-feature__content {
    padding: 2.5rem 1.5rem 3rem;
  }

  .image-statement,
  .image-statement > img {
    min-height: 26rem;
    height: 52svh;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .members-grid,
  .asset-grid,
  .prose-columns {
    grid-template-columns: 1fr;
  }

  .member-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .event-empty-light {
    grid-template-columns: 1fr;
  }

  .event-empty-light h3,
  .event-empty-light > p:not(.eyebrow),
  .event-empty-light .button-row {
    grid-row: auto;
    grid-column: 1;
  }

  .event-row {
    grid-template-columns: 4.5rem 1fr;
  }

  .event-row .button {
    grid-column: 2;
    justify-self: start;
  }

  .press-teaser {
    gap: 3rem;
  }

  .press-teaser__image {
    aspect-ratio: auto;
  }

  .member-card--detailed {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .download-feature {
    grid-template-columns: 1fr;
  }

  .download-feature__preview {
    width: auto;
    grid-row: auto;
    grid-column: 1;
  }

  .download-feature__preview {
    margin-top: 2rem;
  }

  .about-live__image {
    min-height: 22rem;
    max-height: 30rem;
  }

  .origin-story__copy,
  .origin-story__image {
    grid-row: auto;
    grid-column: 1;
  }

  .origin-story__copy {
    grid-row: 1;
  }

  .about-live__copy {
    padding: 3rem var(--gutter) 4rem;
  }

  .asset-grid article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .asset-grid a {
    grid-column: 1;
    margin-top: 0.5rem;
  }

  .live-gallery {
    grid-template-columns: 1fr;
  }

  .live-gallery div {
    grid-column: 1;
    padding-left: 0;
  }

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

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 26rem) {
  .site-header {
    gap: 0.5rem;
  }

  .brand span {
    display: none;
  }
}

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