/*
  Mentari Art Gallery
  Cleaned stylesheet generated from style(93).css.
  Duplicate selector overrides were consolidated while preserving the latest cascade rules.
*/

@font-face {
  font-family: "Commit Mono";
  src: url("../fonts/CommitMono-400-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commit Mono";
  src: url("../fonts/CommitMono-700-Regular.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commit Mono";
  src: url("../fonts/CommitMono-400-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inconsolata";
  src: url("../fonts/Inconsolata.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main: #F4EFE4;
  --bg-soft: #E8DDCC;
  --text-main: #11151C;
  --text-muted: #6E675D;
  --dark-section: #121814;
  --accent-gold: #C8A46A;
  --accent-red: #7E1F2A;
  --font-heading: "Commit Mono", monospace;
  --font-body: "Inconsolata", monospace;
  --container: min(1180px, calc(100vw - 40px));
  --line-soft: rgba(17, 21, 28, 0.14);
  --line-light: rgba(244, 239, 228, 0.16);
  --shadow-soft: 0 24px 80px rgba(17, 21, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bg-main);
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
  background: rgba(18, 24, 20, 0.72);
  backdrop-filter: blur(18px);
  transition: background 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 24, 20, 0.94);
  border-color: rgba(200, 164, 106, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  min-height: 34px;
}

.brand img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.site-nav a {
  position: relative;
  color: rgba(244, 239, 228, 0.76);
  transition: color 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--bg-main);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  width: 28px;
  height: 28px;
  margin: auto;
  object-fit: contain;
  pointer-events: none;
}

.menu-icon-close {
  display: none;
}

.nav-toggle.is-open .menu-icon-open {
  display: none;
}

.nav-toggle.is-open .menu-icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg-main);
}

.exhibition-hero {
  min-height: 680px;
}

.hero-bg,
.hero-bg img,
.visit-bg,
.visit-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img,
.visit-bg img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 20, 0.62), rgba(18, 24, 20, 0.42), rgba(18, 24, 20, 0.62)),
    linear-gradient(180deg, rgba(18, 24, 20, 0.78), rgba(18, 24, 20, 0.24), rgba(18, 24, 20, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 60px;
}

.hero-centered {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 82px);
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(244, 239, 228, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-light {
  background: var(--bg-main);
  color: var(--text-main);
}

.btn-ghost-light {
  color: var(--bg-main);
  border-color: rgba(244, 239, 228, 0.36);
  background: rgba(244, 239, 228, 0.06);
}

.btn-dark {
  background: var(--dark-section);
  color: var(--bg-main);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  margin-left: 12px;
  color: var(--accent-red);
}

.section {
  padding: clamp(80px, 11vw, 150px) 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.section-kicker h2 {
  max-width: 700px;
}

.editorial-copy {
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(19px, 2vw, 23px);
}

.editorial-copy p {
  margin: 0;
}

.editorial-copy p + p {
  margin-top: 26px;
}

.feature-section {
  padding-top: 0;
}

.exhibition-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--dark-section);
  color: var(--bg-main);
  box-shadow: var(--shadow-soft);
}

.feature-image {
  min-height: 480px;
  background: var(--dark-section);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-panel {
  padding: clamp(38px, 6vw, 76px);
  align-self: center;
}

.feature-panel p {
  color: rgba(244, 239, 228, 0.75);
}

.feature-panel > p:not(.eyebrow) {
  margin: 24px 0 34px;
  max-width: 560px;
  font-size: 19px;
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.info-list.compact {
  margin-bottom: 34px;
}

.info-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}

.info-list dt {
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: rgba(244, 239, 228, 0.84);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 72px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.section-head h2 {
  max-width: 850px;
}

.section-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.selected-grid,
.artwork-grid {
  display: grid;
  gap: 28px;
}

.selected-grid {
  grid-template-columns: repeat(4, 1fr);
}

.artwork-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portrait-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.art-card {
  position: relative;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.art-card .art-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(17, 21, 28, 0.1);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.art-card:hover .art-image {
  transform: translateY(-5px);
  border-color: rgba(126, 31, 42, 0.34);
  background: #efe6d7;
}

.art-card img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.square-grid .art-image,
.selected-grid .art-image {
  aspect-ratio: 1 / 1;
}

.portrait-grid .art-image {
  aspect-ratio: 3 / 4;
}

.landscape-grid .art-image {
  aspect-ratio: 4 / 3;
}

.art-meta {
  padding-top: 18px;
}

.art-meta h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.art-meta p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.visit-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--bg-main);
  overflow: hidden;
}

.visit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 20, 0.88), rgba(18, 24, 20, 0.64), rgba(18, 24, 20, 0.78)),
    linear-gradient(180deg, rgba(18, 24, 20, 0.28), rgba(18, 24, 20, 0.88));
}

.visit-content {
  position: relative;
  z-index: 2;
  padding: 110px 0;
}

.visit-content h2 {
  max-width: 900px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.visit-grid div {
  padding: 24px;
  border: 1px solid var(--line-light);
  background: rgba(244, 239, 228, 0.07);
  backdrop-filter: blur(16px);
}

.visit-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-grid p,
.visit-grid a {
  display: block;
  margin: 0;
  color: rgba(244, 239, 228, 0.82);
}

.visit-grid a + a {
  margin-top: 8px;
}

.statement-section {
  padding-bottom: 60px;
}

.notes-bg,
.notes-bg img,
.notes-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.notes-bg img {
  object-fit: cover;
}

.notes-overlay {
  background: linear-gradient(90deg, rgba(18, 24, 20, 0.92), rgba(18, 24, 20, 0.56), rgba(18, 24, 20, 0.86)),
    linear-gradient(180deg, rgba(18, 24, 20, 0.38), rgba(18, 24, 20, 0.88));
}

.notes-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  padding: clamp(34px, 6vw, 76px);
}

.notes-copy {
  max-width: 720px;
}

.notes-copy h2 {
  max-width: 760px;
  color: var(--bg-main);
}

.notes-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.notes-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(244, 239, 228, 0.18);
  background: rgba(244, 239, 228, 0.08);
  backdrop-filter: blur(18px);
}

.notes-line {
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 228, 0.16);
}

.notes-line:first-child {
  padding-top: 0;
  border-top: 0;
}

.notes-line:last-child {
  padding-bottom: 0;
}

.notes-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.notes-line strong {
  display: block;
  max-width: 420px;
  color: rgba(244, 239, 228, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.dark-editorial {
  background: var(--dark-section);
  color: var(--bg-main);
}

.artist-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 90px);
}

.artist-gallery-grid article {
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.artist-gallery-grid p:not(.eyebrow) {
  color: rgba(244, 239, 228, 0.72);
  font-size: 18px;
}

.archive-head {
  align-items: start;
}

.archive-group + .archive-group {
  margin-top: clamp(72px, 10vw, 120px);
}

.archive-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.archive-label span {
  color: var(--accent-red);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.archive-label h3 {
  text-align: right;
}

.art-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.art-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 20, 0.86);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--bg-main);
  color: var(--text-main);
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.modal-image-wrap {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 24px;
  background: var(--bg-soft);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.modal-info {
  padding: clamp(28px, 5vw, 56px);
  align-self: center;
}

.modal-info h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 58px);
}

.modal-info .info-list div {
  grid-template-columns: 110px 1fr;
  border-top-color: var(--line-soft);
}

.modal-info .info-list dd {
  color: var(--text-muted);
}

.modal-close {
  position: fixed;
  z-index: 4;
  top: 22px;
  right: 22px;
  min-height: 42px;
  padding: 12px 17px;
  border: 1px solid rgba(244, 239, 228, 0.28);
  border-radius: 999px;
  background: rgba(18, 24, 20, 0.78);
  color: var(--bg-main);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  background: #090d0a;
  color: var(--bg-main);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  width: 140px;
  max-height: 42px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-grid h3 {
  margin-bottom: 22px;
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  max-width: 430px;
  margin: 0;
  color: rgba(244, 239, 228, 0.68);
  font-size: 15px;
}

.footer-grid a + a {
  margin-top: 9px;
}

.footer-grid a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(244, 239, 228, 0.56);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: rgba(244, 239, 228, 0.78);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 220ms ease;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav a:hover,
.site-nav a.active {
    color: var(--accent-gold);
  }

  .hero,
  .exhibition-hero {
    min-height: 700px;
  }

  .split-grid,
  .exhibition-feature,
  .artist-gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    padding: 40px 24px;
  }

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

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

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

  .notes-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 22px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-image-wrap {
    min-height: 380px;
  }

}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .brand {
    width: 104px;
  }

  .hero,
  .exhibition-hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 78px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .editorial-copy {
    font-size: 18px;
  }

  .selected-grid,
  .artwork-grid,
  .portrait-grid,
  .landscape-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .art-card .art-image {
    min-height: 240px;
  }

  .info-list div,
  .modal-info .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-image {
    min-height: 320px;
  }

  .notes-inner {
    padding: 32px 20px;
  }

  .notes-panel {
    padding: 22px;
  }

  .notes-line strong {
    font-size: 18px;
  }

  .archive-label {
    align-items: start;
    display: block;
  }

  .archive-label h3 {
    margin-top: 10px;
    text-align: left;
  }

  .footer-grid {
    gap: 34px;
  }

  .hero-centered {
    max-width: 100%;
  }

  .hero-centered h1 {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
  }

  .hero-centered .hero-copy {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    z-index: 9999;
  }

  body.nav-open .site-header {
    background: #121814;
    border-bottom: 0;
  }

  body.nav-open .brand {
    opacity: 0;
    pointer-events: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 10002;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .menu-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 130px 24px 48px;
    background: #121814;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 260ms ease,
      visibility 260ms ease,
      transform 260ms ease;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    pointer-events: none;
  }

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

  .site-nav a {
    width: min(100%, 340px);
    padding: 18px 16px;
    border-bottom: 1px solid rgba(244, 239, 228, 0.16);
    color: rgba(244, 239, 228, 0.78);
    font-family: var(--font-body);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: lowercase;
  }

  .site-nav a.active,
  .site-nav a:hover {
    color: var(--accent-gold);
  }

  .site-nav a::after {
    display: none;
  }

}

@media (max-width: 620px) {
  .home-hero .eyebrow {
    text-transform: none;
    letter-spacing: 0.08em;
    font-size: 13px;
    line-height: 1.4;
  }

  .home-hero .hero-actions {
    width: auto;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .home-hero .btn {
    width: auto;
    min-width: 155px;
    min-height: 42px;
    padding: 12px 18px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
  }

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

  .about-section .split-grid {
    gap: 38px;
  }

  .about-section .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .about-section .section-kicker h2 {
    max-width: 430px;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .about-section .editorial-copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .about-section .editorial-copy p {
    width: 82%;
    margin: 0;
    color: rgba(17, 21, 28, 0.72);
  }

  .about-section .editorial-copy p:nth-child(2) {
    margin-left: auto;
    text-align: right;
  }

  .about-section .editorial-copy p:nth-child(3) {
    margin-right: auto;
  }

  .about-section .editorial-copy p + p {
    margin-top: 0;
  }

}

.feature-mobile-image {
  display: none;
}

@media (max-width: 620px) {
  .feature-section {
    padding-top: 0;
    padding-bottom: 78px;
  }

  .feature-section .container {
    width: calc(100% - 32px);
  }

  .exhibition-feature {
    display: block;
    min-height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--text-main);
  }

  .exhibition-feature > .feature-image {
    display: none;
  }

  .feature-panel {
    padding: 0;
    background: transparent;
    color: var(--text-main);
  }

  .feature-panel .eyebrow {
    margin-bottom: 12px;
    color: var(--accent-red);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: none;
  }

  .feature-panel h2 {
    max-width: 100%;
    color: var(--text-main);
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1;
    letter-spacing: -0.065em;
    white-space: nowrap;
  }

  .feature-mobile-image {
    display: block;
    width: min(78%, 320px);
    margin: 28px auto 30px;
  }

  .feature-mobile-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .feature-description {
    display: none;
  }

  .feature-info dt {
    margin-bottom: 5px;
    color: var(--accent-red);
    font-size: 10.5px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .feature-info dd {
    margin: 0;
    color: rgba(17, 21, 28, 0.76);
    font-size: 13px;
    line-height: 1.35;
  }

  .feature-panel .feature-cta:hover {
    background: var(--dark-section);
    color: var(--bg-main);
  }

  .feature-info {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 22px;
    max-width: 100%;
    margin: 0 auto 34px;
    width: min(100%, 390px);
  }

  .feature-info div {
    width: calc(50% - 9px);
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
  }

  .feature-panel .feature-cta {
    width: fit-content;
    min-width: 160px;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid rgba(17, 21, 28, 0.34);
    border-radius: 999px;
    background: transparent;
    color: var(--text-main);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    display: flex;
    margin: 0 auto;
  }

  .selected-section {
    padding-top: 76px;
    padding-bottom: 82px;
    overflow: hidden;
  }

  .selected-section .section-head {
    margin-bottom: 34px;
    padding-bottom: 20px;
  }

  .selected-section .section-head h2 {
    max-width: 390px;
    font-size: clamp(34px, 10.4vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .selected-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    scroll-behavior: auto;
    padding: 4px 0 8px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .selected-grid::-webkit-scrollbar {
    display: none;
  }

  .selected-grid .art-card {
    flex: 0 0 78%;
    max-width: 360px;
    scroll-snap-align: none;
  }

  .selected-grid .art-card .art-image {
    min-height: auto;
    aspect-ratio: 1 / 1;
    padding: 14px;
  }

  .selected-grid .art-card img {
    max-height: none;
  }

  .selected-grid .art-meta {
    padding-top: 14px;
  }

  .selected-grid .art-meta h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  .selected-grid .art-meta p {
    font-size: 13px;
  }

  .visit-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
  }

  .visit-section .visit-bg {
    display: none;
  }

  .visit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/movement-series1.png") center center / cover no-repeat;
  }

  .visit-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 24, 20, 0.72), rgba(18, 24, 20, 0.82)),
      linear-gradient(90deg, rgba(18, 24, 20, 0.58), rgba(18, 24, 20, 0.38));
  }

  .visit-content {
    padding: 72px 0 82px;
    position: relative;
    z-index: 2;
  }

  .visit-content .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: none;
  }

  .visit-content h2 {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 50px);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .visit-grid div {
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border: 1px solid rgba(244, 239, 228, 0.14);
    background: rgba(18, 24, 20, 0.32);
    backdrop-filter: blur(10px);
  }

  .visit-grid div::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
  }

  .visit-grid div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 24, 20, 0.72), rgba(18, 24, 20, 0.82));
  }

  .visit-grid div:nth-child(1)::before {
    background-image: url("../img/happy-spirit.png");
  }

  .visit-grid div:nth-child(2)::before {
    background-image: url("../img/feeling-good.png");
  }

  .visit-grid div:nth-child(3)::before {
    background-image: url("../img/radiant.png");
  }

  .visit-grid div > * {
    position: relative;
    z-index: 2;
  }

  .visit-grid span {
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: none;
  }

  .visit-grid p,
  .visit-grid a {
    color: rgba(244, 239, 228, 0.9);
    font-size: 15px;
    line-height: 1.6;
  }

  .visit-grid a + a {
    margin-top: 8px;
  }

  .exhibition-hero {
    min-height: 610px;
  }

  .exhibition-hero .hero-content {
    max-width: 100%;
    padding-top: 36px;
  }

  .exhibition-hero .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: none;
  }

  .exhibition-hero h1 {
    max-width: 420px;
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .exhibition-hero .hero-copy {
    max-width: 360px;
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

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

  .statement-section .split-grid {
    gap: 38px;
  }

  .statement-section .section-kicker h2 {
    max-width: 430px;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .statement-section .editorial-copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .statement-section .editorial-copy p {
    width: 82%;
    margin: 0;
    color: rgba(17, 21, 28, 0.72);
  }

  .statement-section .editorial-copy p:nth-child(2) {
    margin-left: auto;
    text-align: right;
  }

  .statement-section .editorial-copy p + p {
    margin-top: 0;
  }

}

.exhibition-notes-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: #050505 !important;
  color: var(--bg-main);
}

.exhibition-notes-section .notes-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px;
  opacity: 0.62;
  pointer-events: none;
  filter: saturate(1.15) contrast(1.05);
}

.exhibition-notes-section .notes-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  opacity: 1;
}

.exhibition-notes-section .notes-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-notes-section .notes-tile:nth-child(1) {
  transform: rotate(-3deg);
}

.exhibition-notes-section .notes-tile:nth-child(2) {
  transform: rotate(2deg);
}

.exhibition-notes-section .notes-tile:nth-child(3) {
  transform: rotate(-1deg);
}

.exhibition-notes-section .notes-tile:nth-child(4) {
  transform: rotate(3deg);
}

.exhibition-notes-section .notes-tile:nth-child(5) {
  transform: rotate(-2deg);
}

.exhibition-notes-section .notes-tile:nth-child(6) {
  transform: rotate(2deg);
}

.exhibition-notes-section .notes-tile:nth-child(7) {
  transform: rotate(-3deg);
}

.exhibition-notes-section .notes-tile:nth-child(8) {
  transform: rotate(3deg);
}

.exhibition-notes-section .notes-tile:nth-child(9) {
  transform: rotate(-1deg);
}

.exhibition-notes-section .notes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.44)) !important;
}

.exhibition-notes-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.exhibition-notes-content .notes-copy {
  max-width: 760px;
  margin: 0 auto;
}

.exhibition-notes-content .notes-copy .eyebrow {
  color: var(--accent-gold);
  text-transform: none;
}

.exhibition-notes-content .notes-copy h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bg-main);
}

.exhibition-notes-content .notes-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(244, 239, 228, 0.9);
}

.notes-facts {
  width: min(100%, 980px);
  margin: 42px auto 0;
}

.notes-facts-row {
  display: grid;
  justify-content: center;
  gap: 20px;
}

.notes-facts-row-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notes-facts-row-bottom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.notes-fact {
  text-align: center;
}

.notes-fact span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
}

.notes-fact strong {
  display: block;
  color: rgba(244, 239, 228, 0.96);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.6vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

@media (max-width: 620px) {
  .exhibition-notes-section {
    padding: 58px 0 66px;
  }

  .exhibition-notes-section .notes-collage {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    opacity: 0.58;
  }

  .exhibition-notes-section .notes-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.56)),
      radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38)) !important;
  }

  .exhibition-notes-content .notes-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .exhibition-notes-content .notes-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .notes-facts {
    margin-top: 34px;
  }

  .notes-facts-row-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .notes-facts-row-bottom {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .notes-fact span {
    font-size: 9px;
  }

  .notes-fact strong {
    font-size: 11px;
  }

}

.about-slider-dots {
  display: none;
}

@media (max-width: 620px) {
  .dark-editorial {
    padding-top: 74px;
    padding-bottom: 82px;
    overflow: hidden;
  }

  .artist-gallery-grid {
    width: calc(100% - 32px);
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .artist-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .artist-gallery-grid article {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 0 8px;
    border-top: 0;
    text-align: center;
  }

  .artist-gallery-grid article::after {
    content: none !important;
    display: none !important;
  }

  .artist-gallery-grid article .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: none;
  }

  .artist-gallery-grid article h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-align: center;
  }

  .artist-gallery-grid article p:not(.eyebrow) {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    color: rgba(244, 239, 228, 0.78);
    font-size: 15.5px;
    line-height: 1.7;
    text-align: center;
  }

  .artist-gallery-grid article p:not(.eyebrow) + p:not(.eyebrow) {
    margin-top: 22px;
  }

  .about-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
  }

  .about-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(244, 239, 228, 0.58);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }

  .about-dot.is-active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
  }

  .archive-section {
    padding-top: 76px;
    padding-bottom: 88px;
    overflow: hidden;
  }

  .archive-intro {
    margin-bottom: 46px;
  }

  .archive-intro .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: none;
  }

  .archive-intro h2 {
    max-width: 390px;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .archive-intro p:not(.eyebrow) {
    max-width: 340px;
    margin: 18px 0 0;
    color: rgba(17, 21, 28, 0.68);
    font-size: 15.5px;
    line-height: 1.65;
  }

  .archive-group {
    margin-top: 0;
  }

  .archive-group + .archive-group {
    margin-top: 68px;
  }

  .clean-label {
    display: block;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 21, 28, 0.14);
  }

  .clean-label span {
    display: none !important;
  }

  .clean-label h3 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1;
    letter-spacing: -0.055em;
    text-align: left;
  }

  .artwork-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 14px;
    margin: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .artwork-slider::-webkit-scrollbar {
    display: none;
  }

  .artwork-slider .art-card {
    position: relative;
    flex: 0 0 76%;
    max-width: 340px;
    min-width: 0;
    display: block;
    text-align: left;
    overflow: visible;
  }

  .artwork-slider-square .art-image {
    aspect-ratio: 1 / 1;
  }

  .artwork-slider-portrait .art-card {
    flex-basis: 58%;
    max-width: 260px;
  }

  .artwork-slider-portrait .art-image {
    aspect-ratio: 3 / 4;
  }

  .archive-section .art-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: auto;
    padding: 12px;
    background: var(--bg-soft);
    border: 1px solid rgba(17, 21, 28, 0.12);
    overflow: hidden;
  }

  .archive-section .art-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .archive-section .art-meta {
    position: static;
    display: block;
    padding-top: 13px;
    margin: 0;
    background: transparent;
    transform: none;
  }

  .archive-section .art-meta h3 {
    margin: 0;
    color: var(--text-main);
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .archive-section .art-meta p {
    margin: 6px 0 0;
    color: rgba(17, 21, 28, 0.62);
    font-size: 12.5px;
    line-height: 1.35;
  }

  .artwork-landscape-feature {
    display: flex;
    justify-content: center;
  }

  .artwork-landscape-feature .art-card {
    width: min(100%, 370px);
    text-align: center;
  }

  .artwork-landscape-feature .art-image {
    aspect-ratio: 4 / 3;
  }

  .artwork-landscape-feature .art-meta {
    text-align: center;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    min-height: 36px;
    padding: 10px 14px;
    font-size: 11px;
    z-index: 305;
    border-radius: 999px;
  }

  .art-modal {
    padding: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
  }

  .modal-card {
    max-height: calc(100dvh - 24px) !important;
    width: calc(100vw - 24px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: var(--bg-main) !important;
    color: var(--text-main) !important;
    overflow-y: auto;
    max-width: 470px !important;
    min-width: calc(100vw - 24px) !important;
    height: min(84dvh, 700px) !important;
  }

  .modal-image-wrap {
    min-height: 280px !important;
    padding: 16px 16px 0 !important;
    flex: 0 0 auto;
    height: 42% !important;
    background: var(--bg-main) !important;
    width: 100% !important;
    max-height: 320px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .modal-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    max-width: 100% !important;
  }

  .modal-info {
    padding: 18px 30px 26px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    width: 100% !important;
    background: var(--bg-main) !important;
    overflow: visible;
  }

  .modal-info .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: none;
    display: none !important;
  }

  .modal-info h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1 !important;
    letter-spacing: -0.055em !important;
    margin: 0 0 18px !important;
    color: var(--text-main) !important;
  }

  .modal-info .info-list {
    gap: 0 !important;
    display: grid !important;
    margin: 0 !important;
  }

  .modal-info .info-list div {
    display: grid !important;
    grid-template-columns: 88px 1fr !important;
    gap: 12px !important;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 21, 28, 0.14) !important;
    padding: 10px 0 !important;
  }

  .modal-info .info-list dt {
    font-size: 10px !important;
    letter-spacing: 0.09em !important;
    color: var(--accent-gold) !important;
    line-height: 1.2;
    text-transform: uppercase !important;
  }

  .modal-info .info-list dd {
    font-size: 13px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    color: rgba(17, 21, 28, 0.72) !important;
  }

}
