:root {
  --ink: #111111;
  --paper: #f6f6f3;
  --muted: #666663;
  --line: #d8d8d2;
  --white: #ffffff;
  --accent: #d24d35;
  --accent-dark: #9f3223;
  --teal: #2f7d73;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Lato, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: 190px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

.brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72)), url("images/PXL_20240530_1205175072.jpg");
  background-position: center;
  background-size: cover;
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  padding: 120px 0 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f0d2c9;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: 4.9rem;
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.06;
}

h3 {
  margin: 8px 0 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.location {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.current-show,
.artists,
.visit,
.artist-profile,
.artist-works,
.contact-section {
  padding: 80px 0;
}

.current-show,
.visit,
.contact-section {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.lead {
  color: #282824;
  font-size: 1.12rem;
}

.lead p:first-child {
  margin-top: 0;
}

.artists {
  background: var(--paper);
}

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

.artist-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artist-card a {
  display: grid;
  grid-template-rows: 360px auto;
  min-height: 100%;
  text-decoration: none;
}

.artist-card img,
.artist-placeholder {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.artist-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--teal);
}

.artist-placeholder span {
  max-width: 220px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.artist-card-body {
  padding: 22px;
}

.artist-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.artist-card-body span {
  color: var(--accent-dark);
  font-weight: 800;
}

.platform {
  padding: 86px 0;
  color: var(--white);
  background: var(--ink);
}

.platform .lead {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #f0d2c9;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer {
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.artist-profile {
  background: var(--white);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.profile-media {
  min-height: 520px;
  border-radius: 8px;
  background: var(--teal);
}

.profile-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.profile-media.placeholder {
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--white);
}

.profile-media.placeholder span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.artist-works {
  background: var(--paper);
}

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

.work-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.info-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card h3 {
  margin-top: 0;
}

.info-card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .two-column,
  .visit-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .artist-grid,
  .contact-cards,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .artist-card a {
    grid-template-rows: 300px auto;
  }

  .artist-card img,
  .artist-placeholder,
  .profile-media,
  .profile-media img {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 62vh;
  }

  .hero-inner {
    padding-bottom: 46px;
  }

  h1 {
    font-size: 2.55rem;
  }

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

  .current-show,
  .artists,
  .visit,
  .artist-profile,
  .artist-works,
  .contact-section {
    padding: 58px 0;
  }
}
