:root {
  --artistern-ink: #1c1b19;
  --artistern-paper: #fff;
  --artistern-canvas: #faf9f6;
  --artistern-soft: #f3f1ec;
  --artistern-muted: #706b63;
  --artistern-faint: #9a958c;
  --artistern-line: #e7e2d8;
  --artistern-line-strong: #d6d0c4;
  --artistern-brass: #9a7b2e;
  --artistern-success: #356b4a;
  --artistern-danger: #a33b32;
  --artistern-header-height: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--artistern-paper);
  color: var(--artistern-ink);
  direction: ltr;
  font: 400 14px/1.6 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

body.artistern-overlay-open {
  overflow: hidden;
}

body [hidden] {
  display: none !important;
}

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

body :where(button, input, select, textarea, a, img, figure, article, section, aside) {
  border-radius: 0;
}

body :where(button, input, select, textarea) {
  font: inherit;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

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

a:hover,
a:focus {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--artistern-brass);
  outline-offset: 3px;
}

.screen-reader-text,
.artistern-skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.artistern-skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  padding: 10px 14px;
  background: var(--artistern-paper);
  color: var(--artistern-ink);
}

.artistern-shell {
  width: min(1440px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.artistern-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.artistern-form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--artistern-muted);
  font-size: 13px;
}

.artistern-form-status.is-success {
  color: var(--artistern-success);
}

.artistern-form-status.is-error {
  color: var(--artistern-danger);
}

.artistern-required {
  color: var(--artistern-danger);
  font-weight: 600;
}

.artistern-narrow {
  max-width: 860px;
}

.artistern-site-main {
  min-height: 55vh;
}

.artistern-standard-page,
.artistern-single-post,
.artistern-post-list {
  padding-top: 88px;
  padding-bottom: 100px;
}

.artistern-page-heading {
  max-width: 920px;
  margin-bottom: 48px;
}

.artistern-page-heading h1 {
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 1.06;
}

.artistern-page-lede {
  max-width: 720px;
  color: var(--artistern-muted);
  font-size: 17px;
  line-height: 1.75;
}

.artistern-eyebrow {
  margin-bottom: 14px;
  color: var(--artistern-brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artistern-entry-content {
  color: #35322e;
  font-size: 16px;
  line-height: 1.8;
}

.artistern-entry-content > * {
  max-width: 100%;
}

.artistern-entry-content a {
  border-bottom: 1px solid currentColor;
}

.artistern-entry-content img,
.artistern-single-hero img {
  width: 100%;
}

.artistern-single-hero {
  margin-bottom: 42px;
}

.artistern-button,
.artistern-button:visited {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--artistern-line-strong);
  background: var(--artistern-paper);
  color: var(--artistern-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.artistern-button:hover,
.artistern-button:focus {
  border-color: var(--artistern-ink);
}

.artistern-button-dark,
.artistern-button-dark:visited,
.artistern-button-dark:hover,
.artistern-button-dark:focus {
  border-color: var(--artistern-ink);
  background: var(--artistern-ink);
  color: #fff;
}

.artistern-button-light,
.artistern-button-light:visited {
  border-color: rgba(255, 255, 255, .7);
  background: transparent;
  color: #fff;
}

.artistern-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.artistern-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.artistern-section-soft {
  background: var(--artistern-canvas);
}

.artistern-section-dark {
  background: var(--artistern-ink);
  color: #fff;
}

.artistern-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.artistern-section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.12;
}

.artistern-section-head p:not(.artistern-eyebrow) {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--artistern-muted);
}

.artistern-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.artistern-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.artistern-field.is-wide {
  grid-column: 1 / -1;
}

.artistern-field label,
.artistern-field > span:first-child {
  color: var(--artistern-ink);
  font-size: 12px;
  font-weight: 600;
}

.artistern-field input,
.artistern-field select,
.artistern-field textarea,
.artistern-search-field {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--artistern-line-strong);
  outline: 0;
  background: var(--artistern-paper);
  color: var(--artistern-ink);
}

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

.artistern-field input:focus,
.artistern-field select:focus,
.artistern-field textarea:focus,
.artistern-search-field:focus {
  border-color: var(--artistern-ink);
}

.artistern-required {
  color: var(--artistern-danger);
}

.artistern-form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--artistern-muted);
  font-size: 12px;
}

.artistern-form-status.is-success {
  color: var(--artistern-success);
}

.artistern-form-status.is-error {
  color: var(--artistern-danger);
}

.artistern-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.artistern-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 24px;
}

.artistern-post-card {
  min-width: 0;
  border-bottom: 1px solid var(--artistern-line);
  padding-bottom: 24px;
}

.artistern-post-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--artistern-soft);
}

.artistern-post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.artistern-post-card:hover .artistern-post-card-media img {
  transform: scale(1.035);
}

.artistern-post-card h2 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
}

.artistern-post-card p {
  color: var(--artistern-muted);
}

.artistern-error-page {
  display: flex;
  min-height: 65vh;
  align-items: center;
  padding: 80px 0;
}

.artistern-error-page h1 {
  margin-bottom: 18px;
  font-size: 82px;
  line-height: 1;
}

.artistern-error-page .artistern-button {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .artistern-shell {
    width: min(100% - 40px, 1440px);
  }

  .artistern-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .artistern-page-heading h1 { font-size: 54px; }
  .artistern-section-head h2 { font-size: 42px; }
  .artistern-error-page h1 { font-size: 64px; }

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

@media (max-width: 640px) {
  .artistern-shell {
    width: calc(100% - 32px);
  }

  .artistern-standard-page,
  .artistern-single-post,
  .artistern-post-list {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .artistern-page-heading {
    margin-bottom: 34px;
  }

  .artistern-page-heading h1 {
    font-size: 38px;
  }

  .artistern-section-head h2 { font-size: 36px; }
  .artistern-error-page h1 { font-size: 48px; }

  .artistern-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .artistern-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .artistern-form-grid,
  .artistern-editorial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .artistern-field.is-wide {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
