/* ==========================================================
   HELIOS ATELIER — Scroll-Driven Hero Styles
   ========================================================== */

/* ── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #ffffff;
  --color-surface: #161514;
  --color-text: #f0ece4;
  --color-text-muted: #9a9590;
  --color-gold: #c8a45c;
  --color-gold-light: #dfc07f;
  --color-accent: #c8a45c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-height: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto;           /* we manage our own scroll UX */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

/* ── Loading Overlay ────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__brand {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.loader__brand span {
  font-weight: 600;
  color: var(--color-text);
}

.loader__bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  border-radius: 1px;
  transition: width 0.15s ease-out;
}

.loader__percent {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.nav.is-visible {
  opacity: 1;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
}

.nav__logo-icon {
  color: var(--color-gold);
}

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.nav__logo-text strong {
  font-weight: 600;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  color: #444;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav__links a:hover {
  color: #000;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  color: #333;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.4);
}

/* ── Scroll Progress Bar ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  z-index: 200;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ── Hero Scroll Container ──────────────────────────────── */
.hero-scroll {
  position: relative;
  height: 500vh;   /* 4 screen-heights of scroll runway */
}

.hero-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

/* ── Canvas ─────────────────────────────────────────────── */
.hero-scroll__canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ── Overlay Cards ──────────────────────────────────────── */
.hero-scroll__card {
  position: absolute;
  z-index: 2;
  max-width: 360px;
  padding: 2rem 2.25rem;

  /* Transition: hidden by default */
  opacity: 0;
  transform: translateY(28px);
  visibility: hidden;
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo),
    visibility 0.55s ease;
  pointer-events: none;
}

.hero-scroll__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Positioning variants */
.hero-scroll__card--left {
  left: clamp(2rem, 6vw, 6rem);
  top: 50%;
  transform: translate(0, -50%) translateY(28px);
}

.hero-scroll__card--left.is-visible {
  transform: translate(0, -50%) translateY(0);
}

.hero-scroll__card--right {
  right: clamp(2rem, 6vw, 6rem);
  top: 50%;
  transform: translate(0, -50%) translateY(28px);
}

.hero-scroll__card--right.is-visible {
  transform: translate(0, -50%) translateY(0);
}

.hero-scroll__card-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
}

.hero-scroll__card-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.75vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #3A3A3A;
  margin-bottom: 0.75rem;
}

.hero-scroll__card-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
}

.text-muted {
  color: #3A3A3A;
  font-weight: 300;
}

.text-gold {
  color: var(--color-gold);
}

/* ── Hero Heading ──────────────────────────────────────── */
.hero-heading {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-heading.is-visible {
  opacity: 1;
}

.hero-heading.is-fading {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-heading__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 5.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a2a2a;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-heading__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-heading.is-visible .hero-heading__line:nth-child(1) {
  animation: headingReveal 0.9s var(--ease-out-expo) 0.15s forwards;
}

.hero-heading.is-visible .hero-heading__line:nth-child(2) {
  animation: headingReveal 0.9s var(--ease-out-expo) 0.4s forwards;
}

@keyframes headingReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Scroll Hint ────────────────────────────────────────── */
.hero-scroll__hint {
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero-scroll__hint--inline {
  position: static;
  transform: none;
  opacity: 0;
}

.hero-heading.is-visible .hero-scroll__hint--inline {
  animation: headingReveal 0.9s var(--ease-out-expo) 0.7s forwards;
}

.hero-scroll__hint.is-hidden {
  opacity: 0;
}

/* ── Statue Image ──────────────────────────────────────── */
.hero-scroll__statue {
  display: block;
  width: 280px;
  height: auto;
  margin-top: 1rem;
}

/* ── Award Badge ───────────────────────────────────────── */
.hero-scroll__award {
  position: absolute;
  z-index: 3;
  left: clamp(2rem, 6vw, 6rem);
  bottom: 3rem;
  width: 300px;
  height: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.hero-scroll__award.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-dot {
  animation: scrollDotBounce 1.8s ease-in-out infinite;
}

@keyframes scrollDotBounce {
  0%, 100% { cy: 7; }
  50%      { cy: 16; }
}


/* ── Hamburger Button ──────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Overlay Menu ──────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: clamp(1.5rem, 4vw, 3rem);
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close svg {
  width: 22px;
  height: 22px;
  stroke: #333;
  stroke-width: 2;
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-menu__links a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.mobile-menu__links a:hover,
.mobile-menu__links .nav__link--active {
  color: var(--color-gold);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.mobile-menu__cta:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.4);
}

/* Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden !important;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero-scroll__card {
    max-width: 280px;
    padding: 1.5rem 1.5rem;
  }

  .hero-scroll__card--left {
    left: 1rem;
  }

  .hero-scroll__card--right {
    right: 1rem;
  }

  .hero-scroll__award {
    width: 200px;
    left: 1rem;
    bottom: 2rem;
  }

  .hero-scroll__statue {
    width: 180px;
  }

  .hero-scroll__card-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-scroll__card-body {
    font-size: 0.78rem;
  }
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  position: fixed;
  bottom: 4.8rem;
  right: 1.5rem;
  z-index: 50;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #666;
}

.footer p {
  margin: 0;
  padding: 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 600px) {
  .hero-scroll__card {
    max-width: calc(100vw - 2rem);
    left: 1rem !important;
    right: 1rem !important;
    top: auto !important;
    transform: none !important;
    padding: 1.25rem;
  }

  .hero-scroll__card--left,
  .hero-scroll__card--right {
    bottom: 9rem;
    top: auto;
  }

  .hero-scroll__card--left.is-visible,
  .hero-scroll__card--right.is-visible {
    transform: translateY(0) !important;
  }

  .hero-scroll__canvas {
    top: 40%;
  }

  .hero-scroll__card-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-scroll__card-body {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-scroll__award {
    width: 200px;
    bottom: 1.5rem;
    left: 1rem;
  }

  .hero-scroll__statue {
    width: 120px;
    margin-top: 0.5rem;
  }

  .hero-heading__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-scroll__hint {
    bottom: 1.5rem;
    font-size: 0.6rem;
  }

  .footer {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.65rem;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero-scroll__card {
    padding: 1rem;
    bottom: 7rem !important;
  }

  .hero-scroll__card-title {
    font-size: 1.6rem;
  }

  .hero-scroll__award {
    width: 160px;
  }

  .hero-scroll__statue {
    width: 100px;
  }

  .nav {
    padding: 0 1rem;
  }

  .nav__logo svg {
    width: 130px;
  }
}


/* ==========================================================
   CONTACT SECTION — slides up over hero on scroll
   ========================================================== */

.contact {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;

  /* Entrance animation — driven by JS */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.contact__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #2a2a2a;
  margin-bottom: 2rem;
}

.contact__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 92, 0.6) 50%,
    transparent 100%
  );
  margin-bottom: 2.5rem;
  position: relative;
}

.contact__divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
}

.contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact__link {
  color: #666;
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  position: relative;
}

.contact__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.contact__link:hover {
  color: var(--color-gold);
}

.contact__link:hover::after {
  width: 100%;
}

/* ── Contact footer ──────────────────────────────────────── */
.contact__footer {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #bbb;
}

.contact__footer p {
  margin: 0;
}

.contact__footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__footer a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* ── Ancient Carousel ─────────────────────────────────────── */
.carousel {
  width: 100vw;
  margin-top: 3.5rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: carouselScroll 45s linear infinite;
}

.carousel__track:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel__item {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;

  /* Ancient parchment-style border */
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(200, 164, 92, 0.2);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.carousel__item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1.5px rgba(200, 164, 92, 0.45);
}

.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.15) contrast(1.05);
  transition: filter 0.5s ease, transform 0.6s var(--ease-out-expo);
}

.carousel__item:hover img {
  filter: sepia(0) contrast(1.1);
  transform: scale(1.08);
}

/* Gradient overlay + vignette for ancient feel */
.carousel__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative corner accents */
.carousel__item::after {
  content: '';
  position: absolute;
  inset: 6px;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(200, 164, 92, 0.12);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.carousel__item:hover::after {
  border-color: rgba(200, 164, 92, 0.3);
}

/* Caption label */
.carousel__caption {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ── Explore Chips ────────────────────────────────────────── */
.contact__explore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact__explore-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
}

.contact__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.contact__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  color: #666;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out-expo);
}

.contact__chip:hover {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ── Contact Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .contact {
    padding: 2rem 0;
  }

  .contact__footer {
    position: static;
    margin-top: 2.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact__title {
    font-size: 2.2rem;
  }

  .contact__label {
    margin-bottom: 1rem;
  }

  .contact__link {
    font-size: 0.95rem;
  }

  .contact__divider {
    margin-bottom: 1.5rem;
  }

  .carousel {
    margin-top: 2rem;
  }

  .carousel__item {
    width: 200px;
    height: 135px;
    border-radius: 12px;
  }

  .carousel__item::before {
    border-radius: 12px;
  }

  .carousel__item::after {
    border-radius: 8px;
  }

  .carousel__track {
    gap: 0.75rem;
  }

  .contact__explore {
    margin-top: 1.5rem;
  }

  .contact__chip {
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
  }

  .contact__info {
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .contact__title {
    font-size: 1.8rem;
  }

  .carousel__item {
    width: 170px;
    height: 115px;
  }

  .contact__chip {
    font-size: 0.68rem;
    padding: 0.35rem 0.85rem;
  }
}


/* ==========================================================
   DISCOVER PAGE
   ========================================================== */

/* ── Body override: lock to viewport ──────────────────────── */
.discover-body {
  overflow: hidden;
  height: 100vh;
}

/* ── Active nav link ──────────────────────────────────────── */
.nav__link--active {
  color: #000 !important;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
}

/* ── Main layout: two-column + bottom stats ───────────────── */
.discover {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  height: 100vh;
  padding-top: var(--nav-height);
}

/* ── Left intro column ────────────────────────────────────── */
.discover__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(2rem, 5vw, 5rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.discover__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
  width: fit-content;
}

.discover__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a2a2a;
  margin-bottom: 1.25rem;
}

.discover__subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #888;
  font-weight: 300;
  max-width: 380px;
}

/* ── Right grid of cards ──────────────────────────────────── */
.discover__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.discover__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2vw, 2.25rem);
  background: var(--color-bg);
  text-decoration: none;
  position: relative;
  overflow: hidden;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    background 0.35s ease;
}

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

.discover__card:hover {
  background: #faf8f5;
}

.discover__card:hover .discover__card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.discover__card:hover .discover__card-number {
  color: var(--color-gold);
}

.discover__card-number {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #bbb;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.discover__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.25;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.discover__card-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: #999;
  font-weight: 300;
  max-width: 260px;
}

.discover__card-arrow {
  position: absolute;
  right: clamp(1.25rem, 2vw, 2.25rem);
  bottom: clamp(1.25rem, 2vw, 2.25rem);
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Bottom stats bar ─────────────────────────────────────── */
.discover__stats {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-bg);

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

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

.discover__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.discover__stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: -0.02em;
}

.discover__stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.discover__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.08);
}

/* ── Discover Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .discover-body {
    overflow-y: auto;
    height: auto;
  }

  .discover {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    height: auto;
    min-height: 100vh;
  }

  .discover__intro {
    padding: 2rem 1.5rem 1.5rem;
  }

  .discover__grid {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .discover__stats {
    gap: 1.5rem;
    padding: 1.25rem 1rem;
  }

  .discover__subtitle {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .discover__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .discover__card {
    padding: 1.25rem 1.5rem;
  }

  .discover__card-desc {
    max-width: none;
  }

  .discover__stats {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .discover__stat-value {
    font-size: 1.2rem;
  }

  .discover__stat-divider {
    height: 24px;
  }

  .discover__title {
    font-size: 2rem;
  }

  .discover__intro {
    padding: 1.5rem 1.25rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .discover__stats {
    gap: 0.75rem;
  }

  .discover__stat-label {
    font-size: 0.6rem;
  }

  .discover__title {
    font-size: 1.75rem;
  }
}


/* ==========================================================
   COLLECTIONS PAGE
   ========================================================== */

/* ── Body override: lock to viewport ──────────────────────── */
.collections-body {
  overflow: hidden;
  height: 100vh;
}

/* ── Main layout ──────────────────────────────────────────── */
.collections {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: var(--nav-height);
}

/* ── Header row ───────────────────────────────────────────── */
.collections__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.collections__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.collections__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
  width: fit-content;
}

.collections__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a2a2a;
}

.collections__header-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #999;
  font-weight: 300;
  max-width: 320px;
  text-align: right;
}

/* ── Collection panels: 5 equal columns ───────────────────── */
.collections__panels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  flex: 1;
  min-height: 0;
  background: rgba(0, 0, 0, 0.06);
}

.collections__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: var(--color-bg);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
}

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

/* Cinematic image background with bottom gradient */
.collections__panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Cinematic gradient overlay from bottom */
.collections__panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.collections__panel:hover .collections__panel-bg {
  opacity: 1;
  transform: scale(1);
}

/* Per-panel images — ancient buildings, statues & artifacts */
.collections__panel-bg--1 {
  background-image: url('https://images.unsplash.com/photo-1555993539-1732b0258235?w=600&q=80');
}

.collections__panel-bg--2 {
  background-image: url('https://images.unsplash.com/photo-1601581875309-fafbf2d3ed3a?w=600&q=80');
}

.collections__panel-bg--3 {
  background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f?w=600&q=80');
}

.collections__panel-bg--4 {
  background-image: url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?w=600&q=80');
}

.collections__panel-bg--5 {
  background-image: url('https://images.unsplash.com/photo-1523978591478-c753949ff840?w=600&q=80');
}

.collections__panel-content {
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out-expo);
}

.collections__panel:hover .collections__panel-content {
  transform: translateY(-4px);
}

.collections__panel-number {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ccc;
  margin-bottom: 0.75rem;
  transition: color 0.4s ease;
}

.collections__panel:hover .collections__panel-number {
  color: var(--color-gold);
}

.collections__panel-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.4vw, 1.65rem);
  line-height: 1.25;
  color: #2a2a2a;
  margin-bottom: 0.6rem;
  transition: color 0.4s ease;
}

.collections__panel:hover .collections__panel-title {
  color: #fff;
}

.collections__panel:hover .collections__panel-title .text-gold {
  color: var(--color-gold-light);
}

.collections__panel-desc {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #999;
  font-weight: 300;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.collections__panel:hover .collections__panel-desc {
  color: rgba(255, 255, 255, 0.7);
}

.collections__panel-meta {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.4s ease, border-color 0.4s ease;
}

.collections__panel:hover .collections__panel-meta {
  color: var(--color-gold);
  border-top-color: rgba(200, 164, 92, 0.4);
}

.collections__panel-arrow {
  position: absolute;
  top: clamp(1.25rem, 2vw, 2rem);
  right: clamp(1.25rem, 2vw, 2rem);
  color: #ddd;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 1;
}

.collections__panel:hover .collections__panel-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--color-gold);
}

/* ── Collections Responsive ───────────────────────────────── */
@media (max-width: 1100px) {
  .collections__panels {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .collections-body {
    overflow-y: auto;
    height: auto;
  }

  .collections {
    height: auto;
    min-height: 100vh;
  }

  .collections__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .collections__header-desc {
    text-align: left;
    max-width: none;
  }

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

  .collections__panel {
    min-height: 200px;
  }
}

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

  .collections__panel {
    min-height: 180px;
    padding: 1.25rem;
  }

  .collections__panel-title {
    font-size: 1.2rem;
  }

  .collections__title {
    font-size: 1.8rem;
  }

  .collections__header {
    padding: 1.25rem;
  }
}

@media (max-width: 380px) {
  .collections__panel {
    min-height: 160px;
  }

  .collections__title {
    font-size: 1.6rem;
  }
}


/* ==========================================================
   ARTISTS PAGE
   ========================================================== */

/* ── Body override ────────────────────────────────────────── */
.artists-body {
  overflow: hidden;
  height: 100vh;
}

/* ── Main layout: sidebar + grid ─────────────────────────── */
.artists {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100vh;
  padding-top: var(--nav-height);
}

/* ── Left Sidebar ─────────────────────────────────────────── */
.artists__sidebar {
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.artists__sidebar-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2.5rem clamp(1.5rem, 2vw, 2.25rem);
  gap: 0;

  /* Entrance animation */
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.artists__sidebar-inner.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.artists__sidebar-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
  width: fit-content;
}

.artists__sidebar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a2a2a;
  margin-bottom: 1.25rem;
}

.artists__sidebar-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #999;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

/* ── Sidebar Greek key divider ───────────────────────────── */
.artists__sidebar-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 92, 0.4) 20%,
    rgba(200, 164, 92, 0.4) 80%,
    transparent 100%
  );
  margin-bottom: 1.75rem;
  position: relative;
}

.artists__sidebar-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ── Sidebar navigation links ────────────────────────────── */
.artists__sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.artists__sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  color: #888;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: color 0.25s ease, padding-left 0.3s var(--ease-out-expo);
}

.artists__sidebar-link:hover {
  color: #2a2a2a;
  padding-left: 0.5rem;
}

.artists__sidebar-link--active {
  color: var(--color-gold) !important;
  border-bottom-color: rgba(200, 164, 92, 0.25);
}

.artists__sidebar-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.artists__sidebar-link:hover svg {
  opacity: 1;
}

/* ── Sidebar footer / count ──────────────────────────────── */
.artists__sidebar-footer {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.artists__sidebar-count {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: -0.02em;
}

.artists__sidebar-count-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
}

/* ── Video Grid (2x2, fills remaining space) ─────────────── */
.artists__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* ── Video Tile ──────────────────────────────────────────── */
.artists__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;

  /* Entrance animation */
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

.artists__tile.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Video wrapper */
.artists__tile-video-wrap {
  position: absolute;
  inset: 0;
}

.artists__tile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out-expo);
}

/* Dark overlay gradient */
.artists__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.12) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.5s ease;
}

.artists__tile:hover .artists__tile-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

/* Content positioned at bottom */
.artists__tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 2vw, 2rem);
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out-expo);
}

.artists__tile:hover .artists__tile-content {
  transform: translateY(-6px);
}

.artists__tile-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.artists__tile:hover .artists__tile-number {
  opacity: 1;
}

.artists__tile-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.artists__tile-craft {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
}

.artists__tile:hover .artists__tile-craft {
  color: rgba(255, 255, 255, 0.75);
}

/* Animated gold line on hover */
.artists__tile-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  z-index: 3;
  transition: width 0.6s var(--ease-out-expo);
}

.artists__tile:hover .artists__tile-hover-line {
  width: 100%;
}

/* ── Artists Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .artists-body {
    overflow-y: auto;
    height: auto;
  }

  .artists {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 100vh;
  }

  .artists__sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .artists__sidebar-inner {
    padding: 1.5rem;
    gap: 0;
  }

  .artists__sidebar-nav {
    display: none;
  }

  .artists__sidebar-footer {
    display: none;
  }

  .artists__sidebar-divider {
    display: none;
  }

  .artists__sidebar-desc {
    margin-bottom: 0;
  }

  .artists__grid {
    min-height: 70vh;
  }
}

@media (max-width: 600px) {
  .artists__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 50vw);
    min-height: auto;
  }

  .artists__sidebar-inner {
    padding: 1.25rem;
  }

  .artists__sidebar-title {
    font-size: 2rem;
  }

  .artists__sidebar-desc {
    font-size: 0.85rem;
  }

  .artists__tile-name {
    font-size: 1.15rem;
  }

  .artists__tile-craft {
    font-size: 0.68rem;
  }

  .artists__tile-content {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .artists__grid {
    grid-template-rows: repeat(4, 55vw);
  }

  .artists__sidebar-title {
    font-size: 1.7rem;
  }

  .artists__tile-name {
    font-size: 1rem;
  }
}


/* ==========================================================
   EXHIBITIONS PAGE
   ========================================================== */

/* -- Body override ---------------------------------------- */
.exhibitions-body {
  overflow: hidden;
  height: 100vh;
}

/* -- Main layout ------------------------------------------ */
.exhibitions {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: var(--nav-height);
}

/* -- Header row ------------------------------------------- */
.exhibitions__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.exhibitions__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exhibitions__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.35);
  width: fit-content;
}

.exhibitions__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a2a2a;
}

.exhibitions__header-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #999;
  font-weight: 300;
  max-width: 320px;
  text-align: right;
}


/* -- Content area: featured + stacked cards --------------- */
.exhibitions__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  flex: 1;
  min-height: 0;
  background: rgba(0, 0, 0, 0.06);
}


/* -- Featured Exhibition (left large card) ---------------- */
.exhibitions__featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 3vw, 3.5rem);
  background: var(--color-bg);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

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

.exhibitions__featured-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555993539-1732b0258235?w=900&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transform: scale(1.03);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.exhibitions__featured-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.exhibitions__featured:hover .exhibitions__featured-bg {
  opacity: 0.3;
  transform: scale(1);
}

.exhibitions__featured-content {
  position: relative;
  z-index: 1;
}

.exhibitions__featured-status {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.exhibitions__featured-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #2a2a2a;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.exhibitions__featured:hover .exhibitions__featured-title {
  color: #1a1a1a;
}

.exhibitions__featured-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #888;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.exhibitions__featured-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.exhibitions__featured-date,
.exhibitions__featured-location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.3s ease;
}

.exhibitions__featured:hover .exhibitions__featured-date,
.exhibitions__featured:hover .exhibitions__featured-location {
  color: var(--color-gold);
}

.exhibitions__featured-arrow {
  position: absolute;
  top: clamp(2rem, 3vw, 3.5rem);
  right: clamp(2rem, 3vw, 3.5rem);
  color: #ddd;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 1;
}

.exhibitions__featured:hover .exhibitions__featured-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--color-gold);
}


/* -- Right: Stacked Exhibition Cards ---------------------- */
.exhibitions__upcoming {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.exhibitions__card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  padding: clamp(1rem, 1.5vw, 1.5rem) clamp(1.25rem, 2vw, 2rem);
  background: var(--color-bg);
  text-decoration: none;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    background 0.35s ease;
}

.exhibitions__card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.exhibitions__card:hover {
  background: #faf8f5;
}

.exhibitions__card-image {
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.exhibitions__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.12) contrast(1.05);
  transition: filter 0.5s ease, transform 0.6s var(--ease-out-expo);
}

.exhibitions__card:hover .exhibitions__card-image img {
  filter: sepia(0) contrast(1.1);
  transform: scale(1.08);
}

.exhibitions__card-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.exhibitions__card-number {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ccc;
  transition: color 0.3s ease;
}

.exhibitions__card:hover .exhibitions__card-number {
  color: var(--color-gold);
}

.exhibitions__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  line-height: 1.25;
  color: #2a2a2a;
}

.exhibitions__card-date {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #bbb;
}

.exhibitions__card-arrow {
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.exhibitions__card:hover .exhibitions__card-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* -- Bottom status bar ------------------------------------ */
.exhibitions__status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-bg);

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

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

.exhibitions__status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.exhibitions__status-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: -0.02em;
}

.exhibitions__status-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.exhibitions__status-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.08);
}


/* -- Exhibitions Responsive ------------------------------- */
@media (max-width: 1100px) {
  .exhibitions__card-image {
    width: 90px;
    height: 65px;
  }

  .exhibitions__card {
    grid-template-columns: 90px 1fr auto;
  }
}

@media (max-width: 900px) {
  .exhibitions-body {
    overflow-y: auto;
    height: auto;
  }

  .exhibitions {
    height: auto;
    min-height: 100vh;
  }

  .exhibitions__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .exhibitions__header-desc {
    text-align: left;
    max-width: none;
  }

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

  .exhibitions__featured {
    min-height: 280px;
    padding: 2rem;
  }

  .exhibitions__featured-desc {
    max-width: none;
  }

  .exhibitions__status {
    gap: 1.5rem;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 600px) {
  .exhibitions__card {
    grid-template-columns: 72px 1fr auto;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .exhibitions__card-image {
    width: 72px;
    height: 50px;
  }

  .exhibitions__card-title {
    font-size: 1rem;
  }

  .exhibitions__card-date {
    font-size: 0.65rem;
  }

  .exhibitions__status {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .exhibitions__status-value {
    font-size: 1.1rem;
  }

  .exhibitions__status-divider {
    height: 24px;
  }

  .exhibitions__featured-title {
    font-size: 1.8rem;
  }

  .exhibitions__featured-desc {
    font-size: 0.82rem;
  }

  .exhibitions__featured {
    min-height: 240px;
    padding: 1.5rem;
  }

  .exhibitions__featured-meta {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .exhibitions__title {
    font-size: 1.8rem;
  }

  .exhibitions__header {
    padding: 1.25rem;
  }
}

@media (max-width: 380px) {
  .exhibitions__card {
    grid-template-columns: 60px 1fr auto;
  }

  .exhibitions__card-image {
    width: 60px;
    height: 42px;
  }

  .exhibitions__featured-title {
    font-size: 1.5rem;
  }

  .exhibitions__title {
    font-size: 1.5rem;
  }

  .exhibitions__status {
    gap: 0.75rem;
  }

  .exhibitions__status-label {
    font-size: 0.6rem;
  }
}
