:root {
  --bg: #0b0908;
  --bg-soft: #17120f;
  --panel: rgba(20, 16, 14, 0.76);
  --panel-strong: rgba(15, 12, 10, 0.92);
  --line: rgba(230, 198, 118, 0.18);
  --text: #f4ead7;
  --muted: #b5ab97;
  --gold: #e0af4b;
  --gold-soft: rgba(224, 175, 75, 0.2);
  --red: #a33f2f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1280px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
     background: radial-gradient(circle at top left, rgba(224, 175, 75, 0.18), transparent 28%), radial-gradient(circle at 82% 14%, rgba(163, 63, 47, 0.22), transparent 22%), linear-gradient(180deg, #ffd700 0%, #004164 38%, #0c1026 100%);
  color: var(--text);
  font-family: 'Familjen Grotesk', sans-serif;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: 0.16;
  pointer-events: none;
}

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

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

button,
a.button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: hidden;
  --header-expanded-height: 50vh;
  --header-compact-height: 92px;
  padding-top: var(--header-expanded-height);
}

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

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent), var(--panel);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.panel--accent {
  background:
    radial-gradient(circle at top, rgba(224, 175, 75, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(17, 13, 10, 0.9);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: 'Sometype Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--compact {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 0.98;
}

h1,
h2 {
  font-family: 'Instrument Serif', serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 180;
  height: var(--header-expanded-height);
  min-height: 420px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(224, 175, 75, 0.12);
  overflow: visible;
  transition: height 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.site-header__backdrop,
.site-header__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header__backdrop {
  background:
    radial-gradient(circle at 20% 18%, rgba(224, 175, 75, 0.16), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(163, 63, 47, 0.22), transparent 18%);
}

.site-header__noise {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-header__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform-origin: top center;
  transition: transform 260ms ease;
}

.site-header__logo {
  width: clamp(260px, 50vh, 620px);
  max-width: 46vw;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.45));
  transition: width 260ms ease, max-width 260ms ease;
}

.site-header__link {
  z-index: 2;
  justify-self: start;
  display: flex;
  flex-direction: row;
  gap: 0.45rem;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Sometype Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  line-height: 1.2;
  writing-mode: horizontal-tb;
  text-orientation: initial;
  transform-origin: center center;
  transition: opacity 220ms ease;
}

.site-header__link--left {
  transform: rotate(90deg);
}

.site-header__link--right {
  justify-self: end;
  transform: rotate(-90deg);
}

.site-header__link:hover {
  opacity: 0.72;
}

@keyframes siteHeaderMorph {
  from {
    height: var(--header-expanded-height);
    min-height: 420px;
    background: rgba(8, 7, 6, 0.24);
    border-bottom-color: rgba(224, 175, 75, 0.12);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  to {
    height: var(--header-compact-height);
    min-height: var(--header-compact-height);
    background: rgba(3, 12, 45, 0.94);
    border-bottom-color: rgba(255, 204, 0, 0.22);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

@keyframes siteHeaderLogoWrapMorph {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(0px);
  }
}

@keyframes siteHeaderLogoMorph {
  from {
    width: clamp(260px, 50vh, 620px);
    max-width: 46vw;
  }

  to {
    width: clamp(100px, 10vh, 170px);
    max-width: 20vw;
  }
}

@keyframes siteHeaderLinkLeftMorph {
  from {
    transform: rotate(90deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes siteHeaderLinkRightMorph {
  from {
    transform: rotate(-90deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@supports (animation-timeline: scroll()) {
  .site-header {
    transition: none;
    animation-name: siteHeaderMorph;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 0 40vh;
  }

  .site-header__logo-wrap {
    transition: none;
    animation-name: siteHeaderLogoWrapMorph;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 0 40vh;
  }

  .site-header__logo {
    transition: none;
    animation-name: siteHeaderLogoMorph;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 0 40vh;
  }

  .site-header__link--left {
    animation-name: siteHeaderLinkLeftMorph;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 30vh 32vh;
  }

  .site-header__link--right {
    animation-name: siteHeaderLinkRightMorph;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 30vh 32vh;
  }
}

.intro {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
}

.intro__eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: 'Sometype Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 2rem;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100vh;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  overflow: visible;
}

.hero.header-shrunk {
  position: fixed;
  left: 0;
  right: 0;
  height: 100px;
  padding: 20px 40px;
  background: rgba(11, 9, 8, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224, 175, 75, 0.15);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fixed Header (appears on scroll) */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(11, 9, 8, 0.98);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: height 400ms ease;
}

.header-fixed.active {
  height: 80px;
  border-bottom: 1px solid rgba(224, 175, 75, 0.15);
}

.header-fixed__logo {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: opacity 400ms ease;
}

.header-fixed.active .header-fixed__logo {
  opacity: 1;
}

.header-fixed__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-fixed__nav {
  display: flex;
  gap: 40px;
  opacity: 0;
  transition: opacity 400ms ease;
}

.header-fixed.active .header-fixed__nav {
  opacity: 1;
}

.header-fixed__link {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Sometype Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 200ms ease;
}

.header-fixed__link:hover {
  opacity: 0.7;
}

.hero__backdrop,
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop {
  background:
    radial-gradient(circle at 20% 18%, rgba(224, 175, 75, 0.16), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(163, 63, 47, 0.22), transparent 18%);
}

.hero__noise {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__side-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__nav--left {
  left: 0;
}

.hero__nav--right {
  right: 0;
}

.hero.header-shrunk .hero__side-nav {
  top: 50%;
  transform: translateY(-50%);
}

.hero__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gold);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 200ms ease, transform 200ms ease, writing-mode 300ms ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.2;
}

.hero.header-shrunk .hero__nav-link {
  writing-mode: horizontal-tb;
  flex-direction: row;
  gap: 4px;
}

.hero__nav-link:hover {
  opacity: 0.7;
  transform: translateX(-4px);
}

.hero__nav--right .hero__nav-link:hover {
  transform: translateX(4px);
}

.hero__backdrop {
  background:
    radial-gradient(circle at 20% 18%, rgba(224, 175, 75, 0.16), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(163, 63, 47, 0.22), transparent 18%);
}

.hero__noise {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 42px;
}

.hero__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 42px;
  gap: 28px;
  flex: 1;
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.header-shrunk .hero__center {
  opacity: 0;
  pointer-events: none;
}

.hero__logo {
  width: 50vh;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.header-shrunk .hero__logo {
  transform: scale(0.35);
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
}

.hero__content {
  padding: 0;
}

.hero__lede {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.4;
}

.hero__subcopy {
  max-width: 38rem;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.hero__actions,
.artist-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(224, 175, 75, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 175, 75, 0.22), rgba(224, 175, 75, 0.1));
  color: var(--text);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(224, 175, 75, 0.68);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  outline: none;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.button span {
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-chip {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 200ms ease, border-color 200ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(224, 175, 75, 0.4);
  outline: none;
}

.contact-chip__label {
  font-family: 'Sometype Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-chip__value {
  color: var(--text);
}

.hero__visual {
  display: none;
}

.hero__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 0;
}

.hero__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
}

.hero__logo-mark img {
  width: min(100%, 240px);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
}

.hero__shop-shot {
  display: none;
}

.portrait-tile {
  display: none;
}

.artist-card__portrait,
.artist-card__preview-strip img,
.gallery-modal__stage img,
.gallery-modal__thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__marquee {
  width: calc(100% + 8vw);
  margin: 26px 0 0 -4vw;
  padding: 12px 0;
  display: flex;
  gap: 28px;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid rgba(224, 175, 75, 0.18);
  border-bottom: 1px solid rgba(224, 175, 75, 0.18);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 234, 215, 0.7);
}

.hero__marquee span {
  animation: marquee 22s linear infinite;
}

.intro-grid,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 22px;
  margin-top: 28px;
}

.intro-card,
.stats-card,
.visit-copy,
.visit-map,
.instagram-panel {
  padding: 34px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.stat {
  padding: 18px;
  border-left: 1px solid rgba(224, 175, 75, 0.18);
}

.stat__value {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.stat__label {
  color: var(--muted);
  font-size: 0.95rem;
}

.artists-section {
  padding: 48px 0 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 24px;
}

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

.artist-card {
  grid-column: span 4;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08)),
    rgba(17, 14, 12, 0.78);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.artist-card:hover,
.artist-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--artist-accent);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.42);
}

.artist-card__media {
  position: relative;
  min-height: 430px;
}

.artist-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 8%, transparent 36%, rgba(11, 9, 8, 0.88) 100%);
  pointer-events: none;
}

.artist-card__preview-strip {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: 8px;
}

.artist-card__preview-strip img {
  height: 88px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.artist-card__quicklook {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 9, 8, 0.8);
  color: var(--text);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease;
}

.artist-card__quicklook:hover,
.artist-card__quicklook:focus-visible {
  transform: translateY(-2px);
  border-color: var(--artist-accent);
  outline: none;
}

.artist-card__body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.artist-card__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.artist-card__count {
  color: var(--artist-accent);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-card__body p {
  min-height: 4.5em;
  margin-bottom: 0;
}

.instagram-panel {
  margin-top: 22px;
}

.parallax-section {
  position: relative;
  min-height: 620px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.6;
}

.parallax-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
}

.parallax-text {
  max-width: 680px;
  margin-bottom: 0;
}

.parallax-text h2 {
  margin-bottom: 18px;
}

.parallax-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.instagram-feed {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.instagram-post {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 175, 75, 0.2);
  transition: transform 240ms ease, border-color 240ms ease;
}

.instagram-post:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 175, 75, 0.5);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 175, 75, 0.1), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.instagram-post:hover::after {
  opacity: 1;
}

.instagram-empty {
  margin-top: 40px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(224, 175, 75, 0.2);
  border-radius: 16px;
  background: rgba(224, 175, 75, 0.04);
}

.instagram-empty p {
  color: var(--text-secondary);
}

.instagram-empty a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 220ms ease;
}

.instagram-empty a:hover {
  opacity: 0.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(224, 175, 75, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(224, 175, 75, 0.08), transparent);
  transition: transform 240ms ease, border-color 240ms ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 175, 75, 0.35);
}

.contact-card p:last-of-type {
  margin-bottom: 18px;
}

.visit-info {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.visit-map {
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(224, 175, 75, 0.18);
}

#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 24px;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.info-row {
  display: grid;
  gap: 6px;
}

.info-label {
  color: var(--gold);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-row a {
  color: var(--text);
  transition: color 220ms ease;
}

.info-row a:hover {
  color: var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 0 38px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.footer__brand p:last-child {
  margin-bottom: 0;
  color: var(--text);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 18px;
  border: 1px solid rgba(224, 175, 75, 0.16);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.gallery-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 340px;
  gap: 18px;
}

.gallery-modal__stage-wrap {
  position: relative;
}

.gallery-modal__stage {
  min-height: min(74vh, 760px);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
}

.gallery-modal__nav,
.gallery-modal__close {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.gallery-modal__nav:hover,
.gallery-modal__nav:focus-visible,
.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  transform: scale(1.04);
  border-color: rgba(224, 175, 75, 0.42);
  outline: none;
}

.gallery-modal__nav--prev {
  left: 18px;
  top: calc(50% - 25px);
}

.gallery-modal__nav--next {
  right: 18px;
  top: calc(50% - 25px);
}

.gallery-modal__close {
  top: 14px;
  right: 14px;
}

.gallery-modal__sidebar {
  display: grid;
  grid-template-rows: auto auto auto auto auto minmax(0, 1fr);
  gap: 14px;
  padding: 26px 10px 10px 6px;
}

.gallery-modal__meta {
  color: var(--muted);
  font-family: 'Sometype Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  max-height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.gallery-modal__thumbs button {
  aspect-ratio: 0.92;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.gallery-modal__thumbs button.is-active {
  border-color: rgba(224, 175, 75, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal 800ms cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

body.modal-open {
  overflow: hidden;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1120px) {
  .hero__grid,
  .gallery-modal__content {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__shop-shot {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .artist-card {
    grid-column: span 6;
  }

  .gallery-modal__sidebar {
    padding: 4px 0 0;
  }

  .parallax-section {
    min-height: 520px;
    padding: 60px 0;
  }

  .parallax-content {
    width: min(calc(100vw - 32px), 100%);
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .hero {
    padding-top: 12px;
  }

  .hero__content {
    padding: 24px;
  }

  .contact-strip,
  .hero__visual,
  .hero__portraits,
  .gallery-modal__thumbs {
    grid-template-columns: 1fr;
  }

  .artist-card {
    grid-column: span 12;
  }

  .artist-card__preview-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 16px;
    right: 16px;
  }

  .artist-card__preview-strip img {
    height: 80px;
  }

  .hero__shop-shot,
  .artist-card__media,
  .location-card {
    min-height: 320px;
  }

  .gallery-modal__panel {
    width: calc(100vw - 12px);
    margin: 6px auto;
    padding: 12px;
  }

  .gallery-modal__stage {
    min-height: 44vh;
  }

  .gallery-modal__nav {
    width: 42px;
    height: 42px;
  }

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

  .parallax-section {
    min-height: auto;
    padding: 40px 0;
  }

  .parallax-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .contact-grid,
  .instagram-feed,
  .location-info,
  .visit-info {
    grid-template-columns: 1fr;
  }
}

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

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