@charset "utf-8";
/* CSS Document */

/* =========================
   ISASI GALLERY
========================= */
.ig-section {
  background: #f6f3f2;
  min-height: calc(100vh - 80px);
  height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  height: calc(100svh - 80px);
  overflow: hidden;
}

.ig-shell {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
  min-width: 0;
}

/* =========================
   HEADER
========================= */
.ig-header {
  flex-shrink: 0;
  margin-bottom: 24px;
}

.ig-copy {
  max-width: 36rem;
  min-width: 0;
}

.ig-kicker {
  display: block;
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f2a93b;
}

.ig-title {
  margin: 0 0 16px;
  font-family: "Noto Serif", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.04;
  color: #322214;
}

.ig-text {
  margin: 0;
  max-width: 36rem;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #625e57;
}

/* =========================
   VIEWPORT / SCROLL
========================= */
.ig-viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ig-viewport::-webkit-scrollbar {
  display: none;
}

/* =========================
   GRID
========================= */
.ig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 16px;
}

/* =========================
   CARD
========================= */
.ig-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e9e6e3;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.ig-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.ig-card:hover img {
  transform: scale(1.05);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ig-card:hover .ig-overlay {
  opacity: 1;
}

/* =========================
   NAV
========================= */
.ig-nav-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.ig-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 14px;
  background: #1b1c1c;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.ig-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ig-action:hover {
  color: #f2a93b;
}

.ig-label {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.ig-icon {
  font-size: 16px;
  line-height: 1;
}

.ig-bounce {
  animation: ig-bounce 1.4s infinite;
}

@keyframes ig-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
  .ig-shell {
    width: 100%;
    max-width: 1280px;
    padding: 40px 24px 24px;
  }

  .ig-title {
    font-size: 44px;
    line-height: 1.05;
  }

  .ig-text {
    font-size: 14px;
    line-height: 1.625;
  }

  .ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ig-nav {
    gap: 16px;
    padding: 12px 18px;
  }

  .ig-label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .ig-divider {
    height: 16px;
  }

  .ig-icon {
    font-size: 18px;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {
  .ig-shell {
    width: 100%;
    max-width: 1280px;
    padding: 56px 32px 24px;
  }

  .ig-title {
    font-size: 52px;
  }

  .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}