/* -----------------------------
   BASE
----------------------------- */

:root {
  --bg: #f7e1d4;
  --paper: #f5f2ed;
  --text: #1c1c1c;
  --muted: #777;
  --line: rgba(20, 20, 20, 0.45);
  --pale-blue: #e8f2f7;
  --hover: #ffffff;

  --mono: "IBM Plex Mono", "Courier New", monospace;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.35), transparent 35%),
    var(--bg);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.35;
}


/* -----------------------------
   MAIN LAYOUT
----------------------------- */

.site-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 100vh;
}

.left-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(245, 242, 237, 0.52);
  backdrop-filter: blur(8px);
}

.right-panel {
  min-height: 100vh;
  padding: 28px;
  overflow-x: hidden;
}


/* -----------------------------
   TYPOGRAPHY STYLES
----------------------------- */

/* Website Title */
.website-title {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

/* Subtitle */
.subtitle {
  max-width: 290px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.35;
  text-transform: lowercase;
}

/* General Information */
.general-info,
.info-block p {
  margin: 0;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.42;
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.small p {
  font-size: 13px;
  color: var(--muted);
}


/* -----------------------------
   LINKS
----------------------------- */

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  font-style: italic;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.artist-list a {
  text-decoration: none;
}

.artist-list a:hover {
  padding-left: 8px;
}

.simple-links {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.left-footer {
  margin-top: auto;
  display: flex;
  gap: 18px;
  font-size: 13px;
}


/* -----------------------------
   RIGHT PANEL STRUCTURE
----------------------------- */

.top-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.top-line p {
  margin: 0;
}

.hero-slideshow {
  /* position: relative;
  width: 100%;
  height: 50vh;
  max-height: 50vh;
  overflow: hidden; */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 50vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  filter: grayscale(10%);
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-image {
  display: grid;
  grid-template-columns: 260px minmax(300px, 760px);
  gap: 28px;

  width: 100%;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
}

.hero-image-inner {
  grid-column: 2;
  position: relative;

  width: 100%;
  /* max-width: 760px; */
}

.hero-image-inner img {
  display: block;
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
  filter: grayscale(10%);
}

.hero-image-title {
  position: absolute;
  right: 12px;
  bottom: 12px;

  margin: 0;

  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  text-align: right;

  background: rgba(245, 242, 237, 0.68);
  padding: 4px 7px;
}

/* .hero-image {
  display: grid;
  grid-template-columns: 260px minmax(300px, 760px);
  gap: 28px;

  align-items: end;

  width: 100%;
  margin-bottom: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(255, 255, 255, 0.35);
*/
  /* background: transparent; */
/*}

.hero-image .section-title {
  grid-column: 1;
  margin: 0;
  text-align: right;
  align-self: end;

  font-size: 13px;
  color: var(--muted);
}

.hero-image img {
  display: block;
  grid-column: 2;

  width: 100%;
  max-width: 760px;
  max-height: 50vh;
  object-fit: cover;
  filter: grayscale(10%);
} */

.text-section {
  display: grid;
  grid-template-columns: 260px minmax(300px, 760px);
  gap: 28px; /* 40 */
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.text-section-two {
  display: grid;
  grid-template-columns: 260px minmax(300px, 760px);
  gap: 28px; /* 40 */
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.text-section p + p {
  margin-top: 16px;
}

.text-column {
  max-width: 760px;
}

.text-column .general-info + .general-info {
  margin-top: 16px;
}


/* -----------------------------
   ARTIST CARDS
----------------------------- */

.artists-grid {
  /* border-top: 1px solid var(--line); */
}

.artist-card {
  display: grid;
  grid-template-columns: 260px minmax(300px, 1fr);/* minmax(300px, 0.9fr) minmax(300px, 1fr); */
  gap: 28px;
  padding: 28px 0;
  /* border-bottom: 1px solid var(--line); */
  transition: background 180ms ease, padding 180ms ease;
}

.artist-card.is-active,
.artist-card:hover {
  background: rgba(255, 255, 255, 0.35);
  padding-left: 18px;
  padding-right: 18px;
  mix-blend-mode: normal;
}

.artist-image {
  border: none; /* 1px solid var(--line); */
  padding: 12px;
  /* background: rgba(255,255,255,0.28); */
}

.artist-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 3;
  object-fit: cover;
  /* mix-blend-mode: multiply; */
}

.artist-image:hover img {
  mix-blend-mode: multiply;
}

.artist-text {
  align-self: end;
  max-width: 560px;
}

.closing-section {
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}


/* -----------------------------
   SMALL INTERACTIVE CURSOR LABEL
----------------------------- */

#cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;

  opacity: 0;
  transform: translate(-50%, -50%);
  padding: 4px 7px;

  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
  background: var(--pale-blue);
  border: 1px solid var(--line);

  transition: opacity 160ms ease;
}

body:hover #cursor-label {
  opacity: 1;
}


/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 900px) {
  .site-grid {
    grid-template-columns: 1fr;
  }

  .left-panel {
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .right-panel {
    padding: 20px;
  }

  .hero-image,
   .text-section,
   .text-section-two,
  .artist-card {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* .hero-image {
    padding: 14px;
  } */

  .hero-image {
     /* grid-template-columns: 1fr; */
     justify-items: center;
   }

   .hero-image-inner {
     grid-column: 1;
     max-width: 100%;
     width: 100%;
     margin: 0 auto;
   }

   /* .hero-image-inner img {
     display: block;
     width: 100%;

     object-fit: cover;
     filter: grayscale(10%);
   } */

   .hero-slideshow {
     /* height: 42vh; */
     height: 750px;
     width: 100%;
      max-width: 100%;
      aspect-ratio: 4 / 3;
   }

  .website-title {
    font-size: 58px;
  }

  .text-section-two {
    /* display: grid;
    grid-template-columns: 260px minmax(300px, 760px);
    gap: 28px; */ /* 40 */
    /*padding: 34px 0;
    border-bottom: 1px solid var(--line); */
    grid-template-columns: 1fr;

  }
}
